login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A325325
Number of integer partitions of n with distinct differences between successive parts.
132
1, 1, 2, 2, 4, 5, 5, 8, 11, 12, 16, 22, 21, 30, 34, 42, 49, 64, 67, 87, 95, 117, 132, 160, 169, 207, 230, 274, 301, 360, 395, 463, 506, 602, 656, 762, 834, 960, 1042, 1220, 1311, 1505, 1643, 1859, 2000, 2341, 2491, 2827, 3083, 3464, 3747, 4302, 4561, 5154
OFFSET
0,3
COMMENTS
The Heinz numbers of these partitions are given by A325368.
EXAMPLE
The a(0) = 1 through a(9) = 12 partitions:
() (1) (2) (3) (4) (5) (6) (7) (8) (9)
(11) (21) (22) (32) (33) (43) (44) (54)
(31) (41) (42) (52) (53) (63)
(211) (221) (51) (61) (62) (72)
(311) (411) (322) (71) (81)
(331) (332) (441)
(421) (422) (522)
(511) (431) (621)
(521) (711)
(611) (4221)
(4211) (4311)
(5211)
For example, (5,2,1,1) has differences (-3,-1,0), which are distinct, so (5,2,1,1) is counted under a(9).
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], UnsameQ@@Differences[#]&]], {n, 0, 30}]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 23 2019
STATUS
approved