A040104 First ten consecutive primes which are emirps.
1193, 1201, 1213, 1217, 1223, 1229, 1231, 1237, 1249, 1259
Offset: 1
Links
- Carlos Rivera, Problem 17. The largest known sequence of consecutive and reversible primes, The Prime Puzzles and Problems Connection.
- Carlos Rivera, Puzzle 20. Reversible Primes, The Prime Puzzles and Problems Connection.
Programs
-
Mathematica
Flatten[Select[Partition[Prime[Range[220]],10,1],And@@PrimeQ[ FromDigits/@ (Reverse/@(IntegerDigits/@#))]&]] (* Harvey P. Dale, May 20 2014 *)
Extensions
New name from Charles R Greathouse IV, Jan 13 2014
Comments