OFFSET
0,1
COMMENTS
If a(329) > 0 it is greater than 659*2^10000. - Robert Israel, Jul 01 2014
Indeed, a(329) > 659*2^100000 if it is nonzero. There does not appear to be a covering set, though, so probably a(329) > 0. - Charles R Greathouse IV, Jul 02 2014
a(329) = 659*2^800516 - 1 (found by David W Linton in 2004). - Robert Israel, Jul 04 2014
LINKS
EXAMPLE
a(5)=43 because 2*5+1=11 and smallest prime of the form 11*2^m-1 is 43 (since 10 and 21 are not prime)
MAPLE
A057026:= proc(n)
local t;
t:= 2*n;
while not isprime(t) do t:= 2*t+1 od;
t
end proc;
seq(A057026(n), n=0..328); # Robert Israel, Jul 01 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Henry Bottomley, Jul 24 2000
STATUS
approved