OFFSET
1,2
COMMENTS
Subset of A292450.
Also numbers whose median of the digits is equal to 0. - Stefano Spezia, Oct 04 2023
EXAMPLE
100 has more 0's than any other digit, whereas both 1001 and 1002 have as many other digits as 0's.
MATHEMATICA
Select[Range[0, 11000], Total@ #1 < First@ #2 & @@ TakeDrop[DigitCount@ #, 9] &] (* Michael De Vlieger, Sep 22 2017 *)
PROG
(PARI) a055641(n)=if(n, n=digits(n); sum(i=2, #n, n[i]==0), 1) \\ after Charles R Greathouse IV
is(n) = a055641(n) > (#Str(n)/2) \\ Felix Fröhlich, Sep 22 2017
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Halfdan Skjerning, Sep 22 2017
STATUS
approved