OFFSET
1,1
COMMENTS
According to the statements in the first link given below, the terms for k <= 7667, the primes of the form reversal(2^k-1) are certified and for k >= 19999 they are probable primes.
LINKS
Carlos Rivera, Puzzle 417.
Chris K. Caldwell and G. L. Honaker, Prime Curio for 1990474529917009.
EXAMPLE
5 is included because for n=5, reversal(2^5-1)=13 is prime.
MATHEMATICA
Select[Range[7667], PrimeQ[IntegerReverse[2^# - 1]] &]
PROG
(PARI) isok(k) = isprime(fromdigits(Vecrev(digits(2^k-1)))); \\ Michel Marcus, Aug 10 2019
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Metin Sariyar, Aug 09 2019
STATUS
approved