OFFSET
1,1
COMMENTS
Leading zeroes not permitted, i.e., the terms must be two-digit primes. - Harvey P. Dale, Sep 15 2017
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
The first 2,800 digits of the Champernowne Constant as calculated at WorldWideSchool.org.
MATHEMATICA
Select[Select[FromDigits/@Partition[Flatten[IntegerDigits/@Range[200]], 2, 1], PrimeQ], IntegerLength[#] == 2&] (* Vincenzo Librandi, Apr 24 2013 *)
Select[FromDigits/@Partition[RealDigits[ChampernowneNumber[], 10, 400][[1]], 2, 1], IntegerLength[#]==2&&PrimeQ[#]&] (* Harvey P. Dale, Sep 15 2017 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Andrew G. West (WestA(AT)wlu.edu), Mar 29 2005
EXTENSIONS
Changed offset from 0 to 1 by Vincenzo Librandi, Apr 24 2013
STATUS
approved