OFFSET
0,4
EXAMPLE
The a(9) = 20 split partitions:
(9)
(81) (8)(1)
(72) (7)(2)
(63) (6)(3)
(54) (5)(4)
(432) (43)(2) (4)(3)(2)
(621) (62)(1) (6)(2)(1) (6)(21)
(531) (53)(1) (5)(3)(1) (5)(31)
MATHEMATICA
comps[q_]:=Table[Table[Take[q, {Total[Take[c, i-1]]+1, Total[Take[c, i]]}], {i, Length[c]}], {c, Join@@Permutations/@IntegerPartitions[Length[q]]}];
Table[Sum[Length[Select[comps[y], OrderedQ[Total/@#, Greater]&]], {y, Select[IntegerPartitions[n], UnsameQ@@#&]}], {n, 30}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Sep 29 2018
STATUS
approved