A367682 Number of integer partitions of n whose multiset of multiplicities is the same as their multiset multiplicity kernel.
1, 1, 0, 1, 3, 2, 3, 2, 5, 5, 10, 9, 14, 14, 21, 20, 30, 36, 44, 50, 66, 75, 93, 106, 132, 151, 185, 212, 256, 286, 348, 394, 479, 543, 642, 740, 888, 994, 1176, 1350, 1589, 1789, 2109, 2371, 2786, 3144, 3653, 4126, 4811, 5385, 6213
Offset: 0
Keywords
Examples
The a(1) = 1 through a(10) = 10 partitions: (1) . (21) (22) (41) (51) (61) (71) (81) (91) (31) (221) (321) (421) (431) (333) (541) (211) (3111) (521) (531) (631) (3221) (621) (721) (41111) (4221) (3322) (3331) (4321) (5221) (322111) (511111)
Crossrefs
Programs
-
Mathematica
mmk[q_]:=With[{mts=Length/@Split[q]}, Sort[Table[Min@@Select[q,Count[q,#]==i&], {i,mts}]]]; Table[Length[Select[IntegerPartitions[n], Sort[Length/@Split[#]]==mmk[#]&]], {n,0,15}]
Comments