OFFSET
1,1
EXAMPLE
202 has more 2's than any other digit, whereas 2002 has as many 0's as 2's.
MATHEMATICA
Select[Range[0, 1300], Max@ #1 < First@ #2 & @@ TakeDrop[RotateLeft[#, 2] &@ DigitCount@ #, 9] &] (* Michael De Vlieger, Sep 16 2017 *)
PROG
(Python)
def ok(n):
s=str(n); return s.count('2') > max([0]+[s.count(d) for d in s if d!='2'])
print([m for m in range(1500) if ok(m)]) # Michael S. Branicky, Feb 22 2021
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Halfdan Skjerning, Sep 16 2017
STATUS
approved