OFFSET
0,1
COMMENTS
If we drop the requirement that p-1 must not be divisible by 2^(n+1), we get instead A035089, which is a nondecreasing sequence. - Jeppe Stig Nielsen, Aug 09 2015
LINKS
Donovan Johnson, Table of n, a(n) for n = 0..1000
FORMULA
a(n) = prime(A057776(n+1)). - Amiram Eldar, Mar 16 2025
EXAMPLE
a(13) = 40961 = 1 + 8192*5 where the last term is divisible by the 13th power of 2 and 40961 is the smallest prime with that property.
MAPLE
f:= proc(n) local p;
for p from 2^n+1 by 2^(n+1) do
if isprime(p) then return p fi
od
end proc:
map(f, [$0..100]); # Robert Israel, Aug 10 2015
MATHEMATICA
Table[k = 1; While[p = k*2^n + 1; ! PrimeQ[p], k = k + 2]; p, {n, 0, 40}] (* T. D. Noe, Dec 27 2011 *)
PROG
(PARI) a(n)=forstep(k=1, 9e99, 2, isprime((k<<n)+1)&return((k<<n)+1)) \\ Jeppe Stig Nielsen, Aug 09 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Nov 02 2000
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), Nov 03 2000
STATUS
approved
