cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A046284 Primes p such that concatenation of primes from 2 through p is a prime.

Original entry on oeis.org

2, 3, 7, 719, 1033, 2297, 3037, 11927
Offset: 1

Views

Author

Patrick De Geest, Jun 15 1998

Keywords

Comments

"w_n = (P_1)(P_2) ... (P_n) [A019518], by which notation we mean that w_n is constructed in decimal by simple concatenation of digits [much like the Almost Natural numbers (A007376)]. For example, the first few w_n are 2, 23, 235, 2357, 235711, ... ." - Crandall and Pomerance

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.]

Crossrefs

Cf. A019518, A033308, A069151. a(n) = prime(A046035(n)).

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