OFFSET
0,5
COMMENTS
The complement (complete partitions) is A126796.
LINKS
Joerg Arndt, Table of n, a(n) for n = 0..10000
EXAMPLE
The a(0) = 0 through a(8) = 12 partitions:
. . (2) (3) (4) (5) (6) (7) (8)
(2,2) (3,2) (3,3) (4,3) (4,4)
(3,1) (4,1) (4,2) (5,2) (5,3)
(5,1) (6,1) (6,2)
(2,2,2) (3,2,2) (7,1)
(4,1,1) (3,3,1) (3,3,2)
(5,1,1) (4,2,2)
(4,3,1)
(5,2,1)
(6,1,1)
(2,2,2,2)
(5,1,1,1)
MATHEMATICA
nmz[y_]:=Complement[Range[Total[y]], Total/@Subsets[y]];
Table[Length[Select[IntegerPartitions[n], Length[nmz[#]]>0&]], {n, 0, 15}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Sep 26 2023
STATUS
approved