A046284 Primes p such that concatenation of primes from 2 through p is a prime.
2, 3, 7, 719, 1033, 2297, 3037, 11927
Offset: 1
Examples
7 is a member, since 2357 is a prime.
References
- R. Crandall and C. Pomerance, Prime Numbers: A Computational Perspective, Springer, NY, 2001; see p. 72. [The 2002 printing states incorrectly that 5441 is a term.]
Links
- 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 Number
Programs
-
Mathematica
a = ""; Do[a = StringJoin[a, ToString[ Prime[n]]]; If[ PrimeQ[ ToExpression[a]], Print[n]], {n, 1, 1429}]
Extensions
Additional comments from Robert G. Wilson v, Sep 10 2001
Comments