login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A105435
Primes which with a 1 prepended remain prime.
3
3, 7, 13, 31, 37, 67, 73, 79, 97, 103, 109, 151, 163, 181, 193, 223, 229, 277, 283, 307, 367, 373, 409, 433, 439, 487, 499, 523, 571, 601, 607, 613, 619, 709, 733, 787, 811, 823, 877, 907, 997, 1069, 1087, 1093, 1117, 1171, 1213, 1279, 1321, 1399, 1423, 1447
OFFSET
1,1
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
Cf. A023237.
Sequence in context: A049488 A136051 A100750 * A117708 A093431 A243765
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