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”).

A057203
Numbers k such that 2^k + 23 is prime.
18
3, 7, 39, 79, 359, 451, 1031, 1039, 11311, 30227, 47599, 55731, 307099, 351831, 418851
OFFSET
1,1
COMMENTS
a(16) > 5*10^5. - Robert Price, Sep 06 2015
All terms are odd. - Elmo R. Oliveira, Dec 01 2023
LINKS
Henri Lifchitz and Renaud Lifchitz, Search for 2^n+23, PRP Top Records.
EXAMPLE
For k = 39, 2^39 + 23 = 549755813911 is prime.
MATHEMATICA
Do[ If[ PrimeQ[2^n + 23], Print[ n ]], {n, 1, 5000} ]
PROG
(PARI) is(n)=isprime(2^n+23) \\ Charles R Greathouse IV, Feb 17 2017
CROSSREFS
Cf. A094076.
Cf. A019434 (primes 2^k+1), A057732 (2^k+3), A059242 (2^k+5), A057195 (2^k+7), A057196(2^k+9), A102633 (2^k+11), A102634 (2^k+13), A057197 (2^k+15), A057200 (2^k+17), A057221 (2^k+19), A057201 (2^k+21), this sequence (2^k+23).
Sequence in context: A282427 A192198 A061931 * A056250 A113870 A209326
KEYWORD
nonn,more
AUTHOR
Robert G. Wilson v, Sep 16 2000
EXTENSIONS
a(9)-a(15) from Robert Price, Sep 06 2015
STATUS
approved