Problem 3016. Twin Primes
Twin primes are pairs of primes that are immediately next to each other (difference of two). The lesser of twin primes are 3, 5, 11, 17, 29, ... ( ref. ). The greater of twin primes are 5, 7, 13, 19, 31, ... ( ref. ). Therefore, the first five twin primes are [3,5] [5,7] [11,13] [17,19] [29,31].
For a given index range n, return the twin primes corresponding to that range as a two-row column array.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers94
Suggested Problems
-
1807 Solvers
-
Create a matrix X, where each column is a shifted copy of the vector v
221 Solvers
-
Construct an index vector from two input vectors in vectorized fashion
449 Solvers
-
169 Solvers
-
1132 Solvers
More from this Author139
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!