login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A225139
Primes from merging of 10 successive digits in the decimal expansion of the Champernowne constant.
2
1234567891, 9101112131, 1516171819, 3343536373, 3940414243, 5758596061, 6566676869, 6676869707, 7778798081, 8384858687, 8990919293, 1021031041, 1081091101, 1091101111, 1311411511, 1141151161, 1411511611, 1171181191, 1181191201, 1221231241, 1361371381
OFFSET
1,1
COMMENTS
Leading zeros are not permitted, so each prime is 10 digits in length. The terms are listed in the order in which they occur.
MATHEMATICA
With[{len = 10}, FromDigits /@ Select[Partition[RealDigits[ChampernowneNumber[10], 10, 400][[1]], len, 1], PrimeQ[FromDigits[#]] && IntegerLength[FromDigits[#]] == len &]]
Select[FromDigits/@Partition[RealDigits[ChampernowneNumber[], 10, 1000][[1]], 10, 1], PrimeQ[#]&&IntegerLength[#]==10&] (* Harvey P. Dale, Dec 01 2018 *)
CROSSREFS
Cf. A104953.
Sequence in context: A162324 A235640 A104953 * A176942 A154769 A187565
KEYWORD
nonn,base
AUTHOR
Bruno Berselli, Apr 30 2013
STATUS
approved