OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..200
EXAMPLE
a(3) = 8111, 8 followed by three copies of 1.
MATHEMATICA
SelectFirst[#, PrimeQ]&/@Table[FromDigits[PadRight[{8}, IntegerLength[k] n+1, Reverse[IntegerDigits[k]]]], {n, 30}, {k, 9999}] (* Harvey P. Dale, Feb 02 2020 *)
PROG
(PARI) for(n=1, 100, np=1; k=1; while(np, s="8"; for(i=1, n, s=concat(s, Str(k))); m=eval(s); if(isprime(m), print1(m", "); np=0, k++))) \\ Herman Jamke (hermanjamke(AT)fastmail.fm), May 01 2008
CROSSREFS
KEYWORD
base,nonn,dumb
AUTHOR
Amarnath Murthy, Jan 02 2006
EXTENSIONS
More terms from Herman Jamke (hermanjamke(AT)fastmail.fm), May 01 2008
STATUS
approved