A277552 Primes q with prime gap q - p of n-th record merit.
3, 5, 11, 127, 1151, 1361, 19661, 31469, 156007, 360749, 370373, 1357333, 2010881, 17051887, 20831533, 191913031, 436273291, 2300942869, 3842611109, 4302407713, 10726905041, 25056082543, 304599509051, 461690510543, 1346294311331, 1408695494197, 1968188557063, 2614941711251, 13829048560417, 19581334193189
Offset: 1
Keywords
Programs
-
Mathematica
p = 2; q = 3; lmt = 0; lst = {}; While[p < 10^12, If[q > p + lmt*Log[p], AppendTo[lst, q]; Print[q]; lmt = (q - p)/Log[p]]; p = q; q = NextPrime@ p]; lst (* or *) (* set lst = the terms in A111870 *) NextPrime[ lst] (* Robert G. Wilson v, Nov 07 2016 *)
-
PARI
r=rm=0; p=2; forprime(q=3,, t=q-p; if(t>r, r=t; t/=log(p); if(t>rm, rm=t; print1(q", "))); p=q) \\ Charles R Greathouse IV, Nov 11 2016
Formula
Extensions
More terms from Robert G. Wilson v, Nov 07 2016
Comments