The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A259630 a(n) is the smallest integer not occurring earlier such that 2^a(1) + 2^a(2) + ... + 2^a(n) is a prime. 0
1, 0, 2, 4, 3, 12, 5, 14, 27, 8, 25, 30, 31, 36, 13, 18, 131, 60, 133, 458, 247, 1040, 21, 618, 283, 300, 209, 6282, 19107, 11792, 3401, 30214, 1211, 3044, 15989, 30194 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Is this sequence infinite?
Associated primes: A059661.
Essentially the same as A059662: 1 followed by A059662. - R. J. Mathar, Oct 09 2015
a(37) > 145000. - Giovanni Resta, Jul 01 2019
LINKS
EXAMPLE
a(1) = 1 since 2^0 = 1 is not prime, but 2^1 = 2 is prime.
a(2) = 0 since 2^1 + 2^0 = 2 + 1 = 3 is prime.
a(3) = 2 since 2^1 + 2^0 + 2^2 = 2 + 1 + 4 = 7 is prime.
PROG
(PARI) findsm(va, n) = {m = 0; ok = 0; vs = vecsort(va); sa = sum(k=1, #va, 2^va[k]); while (!ok, if (! vecsearch(vs, m), ns = sa + 2^m; if (isprime(ns), ok = 1; break); ); m++; ); m; }
lista(nn) = {va = []; for (n=1, nn, m = findsm(va, n); va = concat(va, m); print1(m, ", "); ); } \\ Michel Marcus, Sep 26 2015
(Python)
from sympy import isprime
A259630_list, A259630_set, k = [], set(), 0
while len(A259630_list) < 50:
n, m = 0, 1
k += m
while n in A259630_set or not isprime(k):
n += 1
k += m
m *= 2
A259630_list.append(n)
A259630_set.add(n) # Chai Wah Wu, Jun 27 2019
CROSSREFS
Sequence in context: A332454 A143986 A059662 * A114883 A125091 A209048
KEYWORD
nonn,more
AUTHOR
Thomas Ordowski, Sep 24 2015
EXTENSIONS
a(18)-a(25) from Michel Marcus, Sep 26 2015
a(26)-a(28) from Joerg Arndt (with ispseudoprime() in Pari), Sep 28 2015
a(29)-a(34) from Chai Wah Wu, Jun 27 2019
a(35)-a(36) from Giovanni Resta, Jun 30 2019
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 May 16 03:59 EDT 2024. Contains 372549 sequences. (Running on oeis4.)