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

A249775
Least prime p such that the concatenation of primes from prime(n) to p is prime.
1
3, 0, 11, 19, 17, 79, 23, 151, 67, 53, 37, 107, 47, 131, 67, 71, 83, 0, 79, 137, 293, 131, 89, 101, 109, 113, 283, 149, 12923, 149, 317, 181, 1193, 157, 163, 157, 163, 193, 173, 18041, 307, 269, 227, 0, 2897, 211, 257, 331, 359, 239, 239, 251, 599, 257, 263, 269, 1531, 277, 313, 379, 1259
OFFSET
1,1
COMMENTS
a(n) > 40000 or 0 for n = 2, 18, and 44.
EXAMPLE
For n = 3, prime(3) = 5. 57 is not prime. 5711 is prime. Since 5711 = 5//7//11, a(3) = 11.
PROG
(PARI) a(n)=s=Str(prime(n)); forprime(p=prime(n)+1, 40000, s=concat(s, p); if(ispseudoprime(eval(s)), return(p))); 0
for(n=1, 50, print1(a(n), ", "))
CROSSREFS
Cf. A249774.
Sequence in context: A216470 A182259 A211802 * A019264 A028851 A132221
KEYWORD
nonn,base
AUTHOR
Derek Orr, Nov 05 2014
STATUS
approved