A384319 Number of strict integer partitions of n with exactly two possible ways to choose disjoint strict partitions of each part.
0, 0, 0, 1, 1, 0, 2, 3, 1, 0, 4, 4, 4, 2, 0, 6, 7, 8, 8, 3, 2, 9, 9, 14, 13, 6, 7, 3, 15, 13, 20
Offset: 0
Examples
For y = (5,4,2) we have choices ((5),(4),(2)) and ((5),(3,1),(2)), so y is counted under a(11). The a(3) = 1 through a(11) = 4 partitions: (3) (4) . (4,2) (4,3) (6,2) . (5,3,2) (5,4,2) (5,1) (5,2) (5,4,1) (6,3,2) (6,1) (6,3,1) (7,3,1) (7,2,1) (8,2,1)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],UnsameQ@@#&&Length[pof[#]]==2&]],{n,0,30}]
Comments