OFFSET
1,1
COMMENTS
An integer n is in the list if and only if n_i=3 for some index i>0 where n = Sum_{i>=0}n_i4^i is the base 4 representation of n.
LINKS
Tom Edgar, The distribution of the number of parts of m-ary partitions modulo m., arXiv:1603.00085 [math.CO], 2016.
EXAMPLE
There are four 4-ary partitions of 12: one has 12 parts (1+1+1+1+1+1+1+1+1+1+1+1), one has 3 parts (4+4+4), one has 9 parts (4+1+1+1+1+1+1+1+1), and one has 6 parts (4+4+1+1+1+1); thus, modulo 4, the number of parts function is equidistributed mod 4 and so 12 is a term.
There are six 4-ary partitions of 16 so the number of parts function cannot be equidistributed mod 4. Thus, 16 is not a term.
PROG
(Sage) [n for n in [1..150] if 3 in n.digits(4)[1:]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Tom Edgar, Apr 28 2016
STATUS
approved