A384317 Number of integer partitions of n with more than one possible way to choose disjoint strict partitions of each part.
0, 0, 0, 1, 1, 1, 4, 4, 5, 5, 12, 12, 16, 19, 22, 35, 38, 48, 58, 68, 79, 110, 121, 149, 175, 207, 242, 281, 352, 397, 473
Offset: 0
Examples
There are two possibilities for (4,3), namely ((4),(3)) and ((4),(2,1)), so (4,3) is counted under a(7). The a(3) = 1 through a(11) = 12 partitions: (3) (4) (5) (6) (7) (8) (9) (10) (11) (3,3) (4,3) (4,4) (5,4) (5,5) (6,5) (4,2) (5,2) (5,3) (6,3) (6,4) (7,4) (5,1) (6,1) (6,2) (7,2) (7,3) (8,3) (7,1) (8,1) (8,2) (9,2) (9,1) (10,1) (4,3,3) (5,3,3) (4,4,2) (5,4,2) (5,3,2) (5,5,1) (5,4,1) (6,3,2) (6,3,1) (7,3,1) (7,2,1) (8,2,1)
Crossrefs
Programs
-
Mathematica
pof[y_]:=Select[Join@@@Tuples[IntegerPartitions/@y],UnsameQ@@#&]; Table[Length[Select[IntegerPartitions[n],Length[pof[#]]>1&]],{n,0,30}]
Comments