A364675 Number of integer partitions of n whose nonzero first differences are a submultiset of the parts.
1, 1, 2, 3, 4, 4, 7, 7, 10, 12, 15, 15, 26, 25, 35, 45, 55, 60, 86, 94, 126, 150, 186, 216, 288, 328, 407, 493, 610, 699, 896, 1030, 1269, 1500, 1816, 2130, 2620, 3029, 3654, 4300, 5165, 5984, 7222, 8368, 9976, 11637, 13771, 15960, 18978, 21896, 25815, 29915
Offset: 0
Keywords
Examples
The partition y = (3,2,1,1) has first differences (1,1,0), and (1,1) is a submultiset of y, so y is counted under a(7). The a(1) = 1 through a(8) = 10 partitions: (1) (2) (3) (4) (5) (6) (7) (8) (11) (21) (22) (221) (33) (421) (44) (111) (211) (2111) (42) (2221) (422) (1111) (11111) (222) (3211) (2222) (2211) (22111) (4211) (21111) (211111) (22211) (111111) (1111111) (32111) (221111) (2111111) (11111111)
Crossrefs
Programs
-
Mathematica
submultQ[cap_,fat_] := And@@Function[i,Count[fat,i] >= Count[cap,i]] /@ Union[List@@cap]; Table[Length[Select[IntegerPartitions[n], submultQ[Differences[Union[#]],#]&]], {n,0,30}]
Comments