A124584 Primes p such that q-p >= 10, where q is the next prime after p.
113, 139, 181, 199, 211, 241, 283, 293, 317, 337, 409, 421, 467, 509, 523, 547, 577, 619, 631, 661, 691, 709, 773, 787, 797, 811, 829, 839, 863, 887, 919, 953, 997, 1021, 1039, 1051, 1069, 1129, 1153, 1171, 1201, 1237, 1249, 1259, 1307, 1327, 1381, 1399, 1409
Offset: 1
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
- K. Soundararajan, Small gaps between prime numbers: the work of Goldston-Pintz-Yildirim, Bull. Amer. Math. Soc., 44 (2007), 1-18.
- Index entries for primes, gaps between
Programs
-
Mathematica
Transpose[Select[Partition[Prime[Range[300]],2,1],Last[#]-First[#]>9&]][[1]] (* Harvey P. Dale, Jan 23 2013 *)