OFFSET
0,3
COMMENTS
Reverse primes in this sequence (3, 7, 31, 127, 2047, 8191, 131071, 524287, 8388607 etc) are Mersenne primes.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
EXAMPLE
For n = 8, 2^n - 1 = 255, so 552 is in the sequence. - Michael B. Porter, Jul 02 2016
MATHEMATICA
Table[FromDigits[Reverse[IntegerDigits[2^n-1]]], {n, 0, 75}]
PROG
(Magma) [Seqint(Reverse(Intseq(2^n-1))): n in [0..40]];
(PARI) a(n) = eval(concat(Vecrev(Str(2^n-1)))) \\ Felix Fröhlich, Jul 03 2016
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Vincenzo Librandi, May 15 2016
STATUS
approved