login
A292733
Numbers in which 3 outnumbers all other digits together.
9
3, 33, 133, 233, 303, 313, 323, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 343, 353, 363, 373, 383, 393, 433, 533, 633, 733, 833, 933, 1333, 2333, 3033, 3133, 3233, 3303, 3313, 3323, 3330, 3331, 3332, 3333, 3334, 3335, 3336, 3337, 3338, 3339, 3343, 3353, 3363, 3373, 3383, 3393, 3433, 3533, 3633, 3733, 3833, 3933, 4333, 5333, 6333, 7333, 8333
OFFSET
1,1
COMMENTS
Subset of A292453.
EXAMPLE
303 has more 3's than any other digit, whereas both 3003 and 3013 have as many other digits as 3's.
MATHEMATICA
Select[Range[0, 9000], Total@ #1 < First@ #2 & @@ TakeDrop[RotateLeft[#, 3] &@ DigitCount@ #, 9] &] (* Michael De Vlieger, Sep 22 2017 *)
KEYWORD
nonn,base,easy
AUTHOR
Halfdan Skjerning, Sep 22 2017
EXTENSIONS
a(48) and following corrected by Georg Fischer, Dec 22 2022
STATUS
approved