OFFSET
0,3
COMMENTS
The differences of a sequence are defined as if the sequence were increasing, so for example the differences of (6,3,1) are (-3,-2).
The zeroth differences of a sequence are the sequence itself, while the k-th differences for k > 0 are the differences of the (k-1)-th differences.
The Heinz numbers of these partitions are given by A325400.
LINKS
EXAMPLE
The a(1) = 1 through a(8) = 15 reversed partitions:
(1) (2) (3) (4) (5) (6) (7) (8)
(11) (12) (13) (14) (15) (16) (17)
(111) (22) (23) (24) (25) (26)
(112) (113) (33) (34) (35)
(1111) (1112) (114) (115) (44)
(11111) (123) (124) (116)
(222) (223) (125)
(1113) (1114) (224)
(11112) (11113) (1115)
(111111) (111112) (1124)
(1111111) (2222)
(11114)
(111113)
(1111112)
(11111111)
MATHEMATICA
Table[Length[Select[Sort/@IntegerPartitions[n], And@@Table[OrderedQ[Differences[#, k]], {k, 0, Length[#]}]&]], {n, 0, 30}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 02 2019
STATUS
approved