OFFSET
0,13
EXAMPLE
The a(n) partitions for n = 4, 12, 24, 27, 30, 44:
(3,1) (9,3) (18,6) (19,7,1) (21,8,1) (33,11)
(9,2,1) (17,6,1) (20,5,2) (22,6,2) (34,5,4,1)
(18,4,2) (21,3,3) (23,4,3) (34,6,3,1)
(19,2,2,1) (25,2,1,1,1) (34,7,2,1)
(19,3,1,1) (34,8,1,1)
(35,4,3,2)
(35,5,2,2)
For example, the partition y = (28,4,3,1), with mean 9, has negated first differences (24,2,1), with mean 9, so y is counted under a(36).
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], Mean[#]==Mean[Differences[Reverse[#]]]&]], {n, 0, 30}]
CROSSREFS
These partitions have ranks A360669.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 18 2023
STATUS
approved