A176942 Champernowne primes.
1234567891, 12345678910111, 123456789101112131415161
Offset: 1
References
- R. W. Stephan, Factors and primes in two Smarandache sequences.
Links
- Eric W. Weisstein, Table of n, a(n) for n = 1..6
- Eric W. Weisstein, Table of n, a(n) for n = 1..7 (an a-file)
- Eric Weisstein's World of Mathematics, Champernowne Constant
- Eric Weisstein's World of Mathematics, Constant Primes
- Eric Weisstein's World of Mathematics, Integer Sequence Primes
- Eric Weisstein's World of Mathematics, Smarandache Prime
Crossrefs
Cf. A007376 (infinite Barbier word = almost-natural numbers: write n in base 10 and juxtapose digits).
Cf. A033307 (decimal expansion of Champernowne constant).
Cf. A071620 (number of digits in the n-th Champernowne prime).
See A265043 for where to end the string of numbers that are being concatenated in order to get the n-th prime.
Programs
-
Mathematica
With[{no=500},FromDigits/@Select[Table[Take[Flatten[IntegerDigits/@Range[no]],n],{n,no}],PrimeQ[FromDigits[#]]&]] (* Harvey P. Dale, Feb 06 2011 *) Select[Table[Floor[N[ChampernowneNumber[10], n]*10^n], {n, 24}], PrimeQ] (* Arkadiusz Wesolowski, May 10 2012 *)
Comments