login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A046035 Numbers k such that the concatenation of the first k primes (A019518) is a prime. 14
1, 2, 4, 128, 174, 342, 435, 1429 (list; graph; refs; listen; history; text; internal format)
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
Eric Weisstein's World of Mathematics, Consecutive Number Sequences
Eric Weisstein's World of Mathematics, Integer Sequence Primes
Eric Weisstein's World of Mathematics, Smaradache-Wellin Prime
FORMULA
a(n) = A000720(A046284(n)), or A046284(n) = prime(a(n)).
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
Cf. A033308 (Decimal expansion of Copeland-Erdős constant: concatenate primes).
Sequence in context: A333621 A009595 A018493 * A134710 A009073 A326213
KEYWORD
nonn,base,nice
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)