OFFSET
1,6
COMMENTS
The median of a multiset is either the middle part (for odd length), or the average of the two middle parts (for even length).
EXAMPLE
The partition y = (4,3,1,1) has median 2, and its conjugate (4,2,2,1) also has median 2, so y is counted under a(9).
The a(1) = 1 through a(9) = 8 partitions:
(1) . (21) (22) (311) (321) (511) (332) (333)
(411) (4111) (422) (711)
(3111) (31111) (611) (4221)
(3311) (4311)
(4211) (6111)
(5111) (51111)
(41111) (411111)
(311111) (3111111)
MATHEMATICA
conj[y_]:=If[Length[y]==0, y, Table[Length[Select[y, #>=k&]], {k, 1, Max[y]}]];
Table[Length[Select[IntegerPartitions[n], Median[#]==Median[conj[#]]&]], {n, 30}]
CROSSREFS
For mean instead of median we have A047993.
Median of conjugate by rank is A363219.
These partitions are ranked by A363261.
A122111 represents partition conjugation.
A325347 counts partitions with integer median.
A352491 gives n minus Heinz number of conjugate.
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 29 2023
STATUS
approved