OFFSET
1,3
COMMENTS
Also strict partitions such that (maximum) <= 2*(mean).
These are strict partitions whose complement (see A361851) has size <= n.
EXAMPLE
The partition y = (4,3,1) has length 3 and maximum 4, and 3*4 <= 2*8, so y is counted under a(8). The complement of y has size 4, which is less than or equal to n = 8.
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], UnsameQ@@#&&Max@@#<=2*Mean[#]&]], {n, 30}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 23 2023
STATUS
approved