OFFSET
1,2
COMMENTS
No other terms with k <= 34736. - Eric W. Weisstein, Oct 30 2015
REFERENCES
R. Crandall and C. Pomerance, Prime Numbers: A Computational Perspective, Springer, NY, 2001; see p. 72. [The 2002 printing states incorrectly that 719 is a term.]
LINKS
M. Fleuren, Smarandache Concatenated Primes.
Eric Weisstein's World of Mathematics, Consecutive Number Sequences
Eric Weisstein's World of Mathematics, Integer Sequence Primes
Eric Weisstein's World of Mathematics, Smarandache-Wellin Prime
EXAMPLE
4 is a term since 2357 is a prime. [Corrected by Ed Murphy (emurphy42(AT)socal.rr.com), May 15 2007]
MATHEMATICA
max = 1500; With[{primes = Prime[Range[max]]}, Flatten[Position[ Table[ FromDigits[Flatten[IntegerDigits/@Take[primes, n]]], {n, max}], _?PrimeQ]]] (* Harvey P. Dale, Dec 17 2013 *)
Position[FromDigits /@ Rest[FoldList[Join, {}, IntegerDigits[Prime[Range[ 10^3]]]]], _?PrimeQ] // Flatten (* Eric W. Weisstein, Oct 30 2015 *)
PROG
(PARI) p=""; for(n=1, 2000, p=concat(p, prime(n)); if(ispseudoprime(eval(p)), print1(n", "))) \\ Altug Alkan, Oct 30 2015
CROSSREFS
KEYWORD
nonn,base,nice,more,changed
AUTHOR
STATUS
approved