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

A244271
Primes p such that p1p2p3p4p5p6p7p8p9p is prime.
1
17, 53, 181, 313, 829, 859, 1151, 1493, 2011, 2161, 2267, 2287, 2371, 2521, 2549, 2791, 2803, 3019, 3617, 3821, 4273, 4481, 4483, 4493, 5081, 5351, 5399, 5669, 5851, 6067, 6197, 6529, 6781, 6833, 8123, 8329, 8527, 8597, 9277, 10631, 10771, 11119, 11801, 11807, 11941, 12149, 12239, 12421, 12479, 12743, 13033
OFFSET
1,1
LINKS
EXAMPLE
53 is prime and 53153253353453553653753853953 is prime. Thus 53 is a member of this sequence.
MATHEMATICA
Select[Prime[Range[1600]], PrimeQ[FromDigits[Flatten[ IntegerDigits/@ Riffle[ PadRight[ {}, 10, #], Range[ 9]]]]]&] (* Harvey P. Dale, Jun 20 2021 *)
PROG
(PARI) for(n=1, 10^4, b=""; for(i=2, 20, if(i==Mod(1, 2), b=concat(b, Str((i-1)/2))); if(i==Mod(0, 2), b=concat(b, Str(prime(n))))); if(ispseudoprime(eval(b)), print1(prime(n), ", ")))
CROSSREFS
Cf. A244270.
Sequence in context: A082078 A107175 A244270 * A224269 A125637 A320897
KEYWORD
nonn,base,less
AUTHOR
Derek Orr, Jun 24 2014
STATUS
approved