A383711 Number of integer partitions of n with no ones such that it is not possible to choose a family of pairwise disjoint strict integer partitions, one of each part.
0, 0, 0, 0, 1, 0, 1, 1, 3, 3, 4, 6, 10, 11, 17, 19, 30, 36, 51, 61, 84, 96, 133, 160, 209, 253, 325, 393, 488, 598, 744
Offset: 0
Examples
For y = (3,3) we can choose disjoint strict partitions ((2,1),(3)), so (3,3) is not counted under a(6). The a(4) = 1 through a(12) = 10 partitions: (22) . (222) (322) (332) (333) (622) (443) (444) (422) (522) (3322) (722) (822) (2222) (3222) (4222) (3332) (3333) (22222) (4322) (4332) (5222) (4422) (32222) (5322) (6222) (33222) (42222) (222222)
Crossrefs
Programs
-
Mathematica
pof[y_]:=Select[Join@@@Tuples[IntegerPartitions/@y],UnsameQ@@#&]; Table[Length[Select[IntegerPartitions[n],FreeQ[#,1]&&pof[#]=={}&]],{n,0,15}]
Comments