OFFSET
1,1
COMMENTS
The next term (a(11)) has 145 digits. - Harvey P. Dale, Oct 05 2022
n has to be 2, 4, or 8, but it appears that n may always be 4. This is true up to a(14) which has 761 digits. - Harvey P. Dale, Oct 05 2022
MATHEMATICA
Select[Flatten[Table[10 FromDigits[PadRight[{d}, n, 6]]+d-1, {n, 2, 80}, {d, {2, 4, 8}}]], PrimeQ] (* Harvey P. Dale, Oct 05 2022 *)
PROG
(PARI) n10np1(n, d) = { local(x, y, k); for(x=1, n, for(k=1, 8, y=10^(x+1)*k+floor(10^x*d/9)*10+k-1; if(isprime(y), print1(y", ")) ) ) }
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
Cino Hilliard, Jul 11 2005
EXTENSIONS
One more term from Harvey P. Dale, Oct 05 2022
STATUS
approved
