OFFSET
0,2
COMMENTS
Conjecture: for all n, a(n)>0.
a(443) > 17000 if it is not 0.
LINKS
Robert Israel, Table of n, a(n) for n = 0..442
EXAMPLE
2^0=1 and already 31 is prime. So a(0)=1;
2^1=2, but odd part of 32 is 1 (nonprime); then consider odd part of 332. It is 83 that is prime. So a(1)=2.
MAPLE
f:= proc(n) local m, d, k, x;
m:= 2^n;
d:=ilog10(m);
for k from 1 do
x:= (10^k-1)/3*10^(d+1)+m;
if isprime(x/2^padic:-ordp(x, 2)) then return k fi
od
end proc:
map(f, [$0..100]); # Robert Israel, Oct 30 2016
PROG
(PARI) a(n) = {k = 0; while (! ((val = eval(concat(Str((10^k-1)/3), Str(2^n)))) && isprime(val/2^valuation(val, 2))), k++); k; } \\ Michel Marcus, Sep 15 2014
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Vladimir Shevelev, Sep 14 2014
EXTENSIONS
More terms from Michel Marcus, Sep 15 2014
STATUS
approved