OFFSET
0,6
COMMENTS
All of these partitions have even length.
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 a(0) = 1 through a(15) = 11 partitions (0 = {}, A..E = 10..14):
0 . . 21 . 32 . 43 . 54 4321 65 6321 76 5432 87
41 52 63 74 85 6431 96
61 72 83 94 6521 A5
81 92 A3 8321 B4
A1 B2 C3
5321 C1 D2
5431 E1
7321 6432
7431
7521
9321
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], UnsameQ@@#&&!IntegerQ[Median[#]]&]], {n, 0, 30}]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 10 2023
STATUS
approved