OFFSET
2,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 2..1000
EXAMPLE
2 -> 2, prime, so add 2 to the sequence;
11 -> 129, not prime, so 129 is not added to the sequence;
13 -> 131, prime, so add 131 to the sequence; etc.
MATHEMATICA
Select[FromDigits[IntegerDigits[#], 128]&/@Prime[Range[500]], PrimeQ] (* Harvey P. Dale, Mar 30 2012 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Cino Hilliard, Jan 18 2004
STATUS
approved