OFFSET
0,2
COMMENTS
This number is normal in base 10. On average, any integer above 11 can be found in this decimal expansion at a place earlier than in Champernowne's constant, thus making it a more densely encoded normal number.
EXAMPLE
0.1234567891011314151617181920212242526272829303132335363738394...
MATHEMATICA
isitthere[seq_, n_] := SequencePosition[seq, IntegerDigits[n]]; addtoseq[seq_, n_] := Module[{}, id = IntegerDigits[n]; len = Length[id]; For[i = 1, i < len, i++, If[seq[[i - len;; ]] == id[[;; -i - 1]], Return[Join[seq, id[[-i;; ]]]]]]; Return[ Join[seq, id]]]; generate[upto_] := Module[{}, start = {1}; For[m = 1, m <= upto, m++, If[isitthere[start, m] === {}, start = addtoseq[start, m]]]; start]
(* To generate terms which include all positive integers up to 200: *)
generate[200]
CROSSREFS
KEYWORD
AUTHOR
Jonathan P. Shock, Sep 06 2019
STATUS
approved