A387137 Number of integer partitions of n whose parts do not have choosable sets of strict integer partitions.
0, 0, 1, 1, 3, 4, 6, 9, 14, 20, 29, 39, 56, 74, 101, 134, 178, 232, 305, 392, 508, 646, 825, 1042, 1317, 1649, 2066, 2567, 3190, 3937, 4859, 5960, 7306, 8914, 10863, 13183, 15984, 19304, 23288, 28003, 33631, 40272, 48166, 57453, 68448, 81352, 96568, 114383
Offset: 0
Examples
The a(2) = 1 through a(8) = 14 partitions: (11) (111) (22) (221) (222) (322) (422) (211) (311) (411) (511) (611) (1111) (2111) (2211) (2221) (2222) (11111) (3111) (3211) (3221) (21111) (4111) (3311) (111111) (22111) (4211) (31111) (5111) (211111) (22211) (1111111) (32111) (41111) (221111) (311111) (2111111) (11111111)
Crossrefs
Programs
-
Mathematica
strptns[n_]:=Select[IntegerPartitions[n],UnsameQ@@#&]; Table[Length[Select[IntegerPartitions[n],Length[Select[Tuples[strptns/@#],UnsameQ@@#&]]==0&]],{n,0,15}]
Comments