A383533 Number of integer partitions of n with no ones such that it is possible to choose a family of pairwise disjoint strict integer partitions, one of each part.
1, 0, 1, 1, 1, 2, 3, 3, 4, 5, 8, 8, 11, 13, 17, 22, 25, 30, 37, 44, 53, 69, 77, 93, 111, 130, 153, 181, 220, 249, 295
Offset: 0
Examples
For y = (3,3) we can choose disjoint strict partitions ((2,1),(3)), so (3,3) is counted under a(6). The a(2) = 1 through a(10) = 8 partitions: (2) (3) (4) (5) (6) (7) (8) (9) (10) (3,2) (3,3) (4,3) (4,4) (5,4) (5,5) (4,2) (5,2) (5,3) (6,3) (6,4) (6,2) (7,2) (7,3) (4,3,2) (8,2) (4,3,3) (4,4,2) (5,3,2)
Programs
-
Mathematica
pof[y_]:=Select[Join@@@Tuples[IntegerPartitions/@y], UnsameQ@@#&]; Table[Length[Select[IntegerPartitions[n], FreeQ[#,1]&&!pof[#]=={}&]],{n,0,15}]
Comments