A366741 Number of semi-sums of strict integer partitions of n.
0, 0, 0, 1, 1, 2, 5, 6, 9, 13, 21, 26, 37, 48, 63, 86, 108, 139, 175, 223, 274, 350, 422, 527, 638, 783, 939, 1146, 1371, 1648, 1957, 2341, 2770, 3285, 3867, 4552, 5353, 6262, 7314, 8529, 9924, 11511, 13354, 15423, 17825, 20529, 23628, 27116, 31139, 35615
Offset: 0
Keywords
Examples
The strict partitions of 9 and their a(9) = 13 semi-sums: (9) -> (81) -> 9 (72) -> 9 (63) -> 9 (621) -> 3,7,8 (54) -> 9 (531) -> 4,6,8 (432) -> 5,6,7
Crossrefs
Programs
-
Mathematica
Table[Total[Length[Union[Total/@Subsets[#, {2}]]]&/@Select[IntegerPartitions[n], UnsameQ@@#&]], {n,0,30}]
Comments