OFFSET
1,1
LINKS
T. D. Noe, Table of n, a(n) for n = 1..10000
MAPLE
with(numtheory); for i from 1 to 500 do if isprime(10^(ceil(log[10](ithprime(i))))+ithprime(i)) then printf(`%d, `, ithprime(i)) fi: od: # James A. Sellers, Apr 09 2005
MATHEMATICA
Select[ Prime[ Range[ 230]], PrimeQ[ FromDigits[ Join[{1}, IntegerDigits[ # ]]]] &] (* Robert G. Wilson v, Apr 09 2005 *)
Select[Prime[Range[250]], PrimeQ[10^IntegerLength[#]+#]&] (* Harvey P. Dale, May 30 2023 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Lekraj Beedassy, Apr 08 2005
EXTENSIONS
Corrected and extended by Robert G. Wilson v and James A. Sellers, Apr 09 2005
STATUS
approved