OFFSET
1,3
COMMENTS
A digitally balanced number in base b contains every digit from 0 to b-1 in equal amount.
Since the terms in this sequence are not digitally balanced in any base, we could call them "digitally imbalanced numbers".
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10000
Giovanni Resta, Digitally balanced numbers, Numbers Aplenty, 2013.
MATHEMATICA
A378080Q[n_] := Module[{b = 1, len}, While[(len = IntegerLength[n, ++b]) >= b && !(Divisible[len, b] && SameQ @@ DigitCount[n, b])]; len < b];
Select[Range[0, 150], A378080Q]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paolo Xausa, Nov 16 2024
STATUS
approved