OFFSET
1,1
COMMENTS
REFERENCES
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Wilfrid Keller, List of primes k.2^n - 1 for k < 300
H. C. Williams and C. R. Zarnke, A report on prime numbers of the forms M = (6a+1)*2^(2m-1)-1 and (6a-1)*2^(2m)-1, Math. Comp., 22 (1968), 420-422.
MAPLE
A001770:=n->`if`(isprime(5*2^n-1), n, NULL): seq(A001770(n), n=1..1000); # Wesley Ivan Hurt, Oct 15 2014
MATHEMATICA
Select[Range[1000], PrimeQ[5*2^# - 1] &] (* Vaclav Kotesovec, Apr 28 2014 *)
PROG
(PARI) is(n)=isprime(5*2^n-1) \\ Charles R Greathouse IV, Feb 07 2017
CROSSREFS
KEYWORD
nonn,nice,hard,more
AUTHOR
EXTENSIONS
More terms from Hugo Pfoertner, Jun 23 2004
a(40) from the Wilfrid Keller link by Robert Price, Dec 22 2018
STATUS
approved