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!)
A134694 a(0) = 2; a(n) = least prime p such that p >= a(n-1) + 2^n. 1
2, 5, 11, 19, 37, 71, 137, 269, 541, 1061, 2087, 4139, 8237, 16433, 32831, 65599, 131143, 262217, 524369, 1048661, 2097257, 4194409, 8388733, 16777381, 33554639, 67109071, 134217943, 268435697, 536871157, 1073742073, 2147483929 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Primes separated by at least successive powers of 2.
LINKS
EXAMPLE
a(0) = 2 (by definition).
a(1) = 5 because 5 is the least prime >= 4 = 2 + 2^1.
a(2) = 11 because 11 is the least prime >= 9 = 5 + 2^2.
a(3) = 19 because 19 is the least prime >= 19 = 11 + 2^3.
MATHEMATICA
a = {2}; Do[i = a[[ -1]]+2^n; While[ !PrimeQ[i], i++ ]; AppendTo[a, i], {n, 1, 50}]; a (* Stefan Steinerberger, Jan 28 2008 *)
nxt[{n_, a_}]:={n+1, NextPrime[a+2^(n+1)-1]}; NestList[nxt, {0, 2}, 30][[All, 2]] (* Harvey P. Dale, Jan 04 2017 *)
CROSSREFS
Cf. A000040.
Sequence in context: A040105 A319859 A156768 * A121606 A166164 A097008
KEYWORD
easy,nonn
AUTHOR
Walter Carlini, Jan 27 2008
EXTENSIONS
More terms from Stefan Steinerberger, Jan 28 2008
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 13:11 EDT 2024. Contains 371913 sequences. (Running on oeis4.)