OFFSET
0,5
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 A325405.
LINKS
EXAMPLE
The a(1) = 1 through a(12) = 5 reversed partitions (A = 10, B = 11, C = 12):
(1) (2) (3) (4) (5) (6) (7) (8) (9) (A) (B) (C)
(13) (14) (15) (16) (17) (18) (19) (29) (39)
(23) (25) (26) (27) (28) (38) (57)
(34) (35) (45) (37) (47) (1B)
(46) (56) (2A)
(1A)
(146)
MATHEMATICA
Table[Length[Select[Reverse/@IntegerPartitions[n], UnsameQ@@Join@@Table[Differences[#, k], {k, 0, Length[#]}]&]], {n, 0, 30}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 02 2019
STATUS
approved