OFFSET
1,3
LINKS
K. Bonath, Riesel and Proth Prime Database (2015)
EXAMPLE
2*2^1-1=3 prime so a(1)=1.
3*2^1-1=5 prime so a(2)=1.
5*2^1-1=9 composite, 5*2^2-1=19 prime so a(3)=2.
MAPLE
A258868 := proc(n)
option remember;
if n = 0 then
0;
else
for a from procname(n-1) do
ithprime(n)*2^a-1 ;
if isprime(%) then
return a;
fi ;
end do:
end if;
end proc: # R. J. Mathar, Sep 23 2016
MATHEMATICA
lst={1}; Do[x=Last[lst]; Label[begin];
If[PrimeQ[Prime[n]*2^x-1], AppendTo[lst, x], x=x+1; Goto[begin]], {n, 2, 9}]; lst
(* Ivan N. Ianakiev, Jun 19 2015 *)
PROG
(PARI) first(n)=my(t, p); vector(n, i, p=prime(i); while(!ispseudoprime(p<<t-1), t++); t) \\ Charles R Greathouse IV, Jul 03 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Pierre CAMI, Jun 13 2015
STATUS
approved