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”).

A232726
Primes p such that the concatenation 123456789p is prime.
2
23, 29, 167, 191, 199, 257, 311, 409, 419, 433, 457, 563, 587, 601, 653, 761, 769, 809, 881, 947, 1013, 1069, 1091, 1153, 1163, 1187, 1223, 1259, 1283, 1307, 1433, 1489, 1511, 1723, 1787, 1789, 1913, 1993, 2039, 2137
OFFSET
1,1
COMMENTS
Primes in A232725.
LINKS
EXAMPLE
1163 is in this sequence because 1163 and 1234567891163 are prime.
MATHEMATICA
Select[Prime[Range[500]], PrimeQ[FromDigits[Join[Range[9], IntegerDigits[ #]]]]&] (* Harvey P. Dale, Nov 26 2014 *)
PROG
(Python)
from sympy import isprime
for n in range(5000):
if isprime(n) and isprime(int("123456789" + str(n))):
print(n, end=', ') # simplified by Derek Orr, Nov 27 2014
(PARI) forprime(p=1, 5000, if(isprime(eval(concat("123456789", Str(p)))), print1(p, ", "))) \\ Derek Orr, Nov 27 2014
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
Derek Orr, Nov 29 2013
STATUS
approved