A292449 Numbers where 9 outnumbers any other digit.
9, 99, 199, 299, 399, 499, 599, 699, 799, 899, 909, 919, 929, 939, 949, 959, 969, 979, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1099, 1299, 1399, 1499, 1599, 1699, 1799, 1899, 1909, 1929, 1939, 1949, 1959, 1969, 1979, 1989, 1990, 1992, 1993, 1994
Offset: 1
Examples
909 has more 9's than any other digit, whereas 9009 has as many 0's as 9's.
Programs
-
Mathematica
Select[Range[0, 3000], Max@ #1 < First@ #2 & @@ TakeDrop[RotateRight@ DigitCount@ #, 9] &] (* Michael De Vlieger, Sep 16 2017 *)
Extensions
More terms from Michael De Vlieger, Sep 16 2017