A083371 Primes p such that q-p >= 8, where q is the next prime after p.
89, 113, 139, 181, 199, 211, 241, 283, 293, 317, 337, 359, 389, 401, 409, 421, 449, 467, 479, 491, 509, 523, 547, 577, 619, 631, 661, 683, 691, 701, 709, 719, 743, 761, 773, 787, 797, 811, 829, 839, 863, 887, 911, 919, 929, 953, 983, 997, 1021, 1039, 1051, 1069
Offset: 1
Keywords
Links
- Nathaniel Johnston, Table of n, a(n) for n = 1..1500
- 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
Crossrefs
Cf. A076973.
Programs
-
Maple
d:=8; M:=1000; t0:=[]; for n from 1 to M do p:=ithprime(n); if nextprime(p) - p >= d then t0:=[op(t0),p]; fi; od: t0; # N. J. A. Sloane, Dec 19 2006 f := proc(n) option remember: if(n=1)then return 7: fi: return max(op(numtheory[factorset](add(f(i),i=1..n-1)))): end: seq(`if`(f(2*ithprime(n))=ithprime(n),ithprime(n),NULL),n=1..200); # Nathaniel Johnston, Jun 25 2011, via Cloitre's F
-
Mathematica
Transpose[Select[Partition[Prime[Range[200]],2,1],Last[#]-First[#]>7&]][[1]] (* Harvey P. Dale, Jan 28 2013 *)
Formula
Extensions
Terms after a(20) from Nathaniel Johnston, Jun 26 2011
Merged with A124583 in response to Reble's seqfan post. - R. J. Mathar, Jan 24 2022
Comments