login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A204803
Primes followed by a gap of 140 = nextprime(p)-p.
1
7621259, 8917523, 10270451, 14518211, 16525757, 16684331, 23008409, 23995859, 31698521, 32332253, 32379089, 33189557, 33734147, 34189487, 36067223, 36128819, 40454789, 42334769, 44639099, 47084399, 47710997, 48527939, 50339321, 54204053
OFFSET
1,1
MATHEMATICA
Transpose[Select[Partition[Prime[Range[3300000]], 2, 1], #[[2]]-#[[1]] == 140&]][[1]] (* Harvey P. Dale, Jan 14 2016 *)
PROG
(PARI) p=0; g=140; for(c=1, 100, while(g+p!=p=nextprime(p+1), ); print1(", "p-g)) \\
CROSSREFS
Sequence in context: A307476 A237156 A233605 * A187962 A080340 A192105
KEYWORD
nonn
AUTHOR
M. F. Hasler, Jan 19 2012
STATUS
approved