OFFSET
1,1
COMMENTS
More precisely, each term has exactly nine distinct decimal digits any of which may occur more than once. Leading zeros are not permitted.
EXAMPLE
a(1) = 102345678 as all decimal digits but 9 appear and there is no smaller number with only one missing digit.
MATHEMATICA
Select[Range[10^8, 10^8 + 3000000], Length[Union[IntegerDigits[#]]] == 9 &] (* T. D. Noe, Dec 05 2012 *)
CROSSREFS
KEYWORD
base,nonn,easy
AUTHOR
Rick L. Shepherd, Feb 22 2006
EXTENSIONS
Offset corrected by Charles R Greathouse IV, Feb 15 2017
STATUS
approved