login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A124147 Primes p smaller than sqrt(g)*exp(sqrt(g)), where g is the gap between p and the next prime. 1
2, 3, 5, 7, 13, 23, 113, 1327, 31397, 370261, 2010733, 20831323, 25056082087 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Except for 5 & 13, all of the terms here are in A002386 "Increasing gaps between primes ..." at positions 1, 2, 3, 4, 6, 10, 14, 17, 21, 24 & 39. - Robert G. Wilson v, Dec 30 2006
LINKS
Eric Weisstein's World of Mathematics, Prime Gaps
EXAMPLE
a(9)=31397 because g=72 and sqrt(g)*exp(sqrt(g))=41093.88... > 31397.
MATHEMATICA
NextPrim[n_] := Block[{k = n + 1}, While[ !PrimeQ@k, k++ ]; k] lst = {}; p = 2; Do[q = NextPrim@p; g = q - p; If[p < Sqrt[g]*Exp[Sqrt[g]], Print@p; AppendTo[lst, p]]; p = q, {n, 1235000000}] (* Robert G. Wilson v, Dec 30 2006 *)
CROSSREFS
Sequence in context: A080190 A076994 A327591 * A227627 A335116 A135372
KEYWORD
nonn,more
AUTHOR
Rémi Eismann, Dec 13 2006
EXTENSIONS
a(13) from Robert G. Wilson v, Dec 30 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 08:33 EDT 2024. Contains 371905 sequences. (Running on oeis4.)