OFFSET
1,2
COMMENTS
These are, for each digit d and each natural number k, the smallest positive number in which the digit d appears k (or more) times, in numerical order. They are all numbers with all digits repeated except numbers of the form 10^m.
If we started with 0 the term 10 would be missed and all other terms would be the same.
EXAMPLE
100 is included because no previous term contains two 0's. 111 is included because no previous term contains more than 2 1's. Every number between 101 and 110 inclusive is omitted because each contains at most 2 1's (no more than 11) and at most 1 of any other digit (no more than 2 thru 10).
MATHEMATICA
With[{nn=5}, Join[Flatten[Table[FromDigits[PadRight[{}, i, n]], {i, nn}, {n, 9}]], 10^Range[nn]]]//Sort (* Harvey P. Dale, May 31 2016 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Jack W Grahl, Jul 10 2010
STATUS
approved