OFFSET
0,6
EXAMPLE
The multiset partition {{2},{2},{1,1},{1,1}} has both properties (constant blocks and common sum), so (2,2,1,1,1,1) is not counted under a(8). We can also use {{2,2},{1,1,1,1}}.
The a(3) = 1 through a(8) = 13 partitions:
(21) (31) (32) (42) (43) (53)
(41) (51) (52) (62)
(221) (321) (61) (71)
(311) (411) (322) (332)
(2111) (331) (431)
(421) (521)
(511) (611)
(2221) (3221)
(3211) (3311)
(4111) (4211)
(22111) (5111)
(31111) (32111)
(211111) (311111)
MATHEMATICA
mce[y_]:=Table[ConstantArray[y[[1]], #]&/@ptn, {ptn, IntegerPartitions[Length[y]]}];
Table[Length[Select[IntegerPartitions[n], Length[Select[Join@@@Tuples[mce/@Split[#]], SameQ@@Total/@#&]]==0&]], {n, 0, 30}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 17 2025
EXTENSIONS
a(31)-a(54) from Robert Price, Mar 31 2025
STATUS
approved
