OFFSET
0,4
LINKS
EXAMPLE
The a(1) = 1 through a(9) = 9 splittings:
(1) (2) (3) (4) (5) (6) (7) (8) (9)
(2,1) (3,1) (3,2) (4,2) (4,3) (5,3) (5,4)
(4,1) (5,1) (5,2) (6,2) (6,3)
(3,2,1) (6,1) (7,1) (7,2)
(4,2,1) (4,3,1) (8,1)
(5,2,1) (4,3,2)
(5,3,1)
(6,2,1)
(4),(3,2)
The first splitting with more than two blocks is (8),(7,6),(5,4,3,2) under n = 35.
MATHEMATICA
splits[dom_]:=Append[Join@@Table[Prepend[#, Take[dom, i]]&/@splits[Drop[dom, i]], {i, Length[dom]-1}], {dom}];
Table[Sum[Length[Select[splits[ctn], Less@@Total/@#&]], {ctn, Select[IntegerPartitions[n], UnsameQ@@#&]}], {n, 0, 30}]
CROSSREFS
The version with equal sums is A318683.
The version with strictly decreasing sums is A318684.
The version with weakly decreasing sums is A319794.
The version with different sums is A336132.
Starting with a composition gives A304961.
Starting with a non-strict partition gives A336134.
Partitions of partitions are A001970.
Partitions of compositions are A075900.
Compositions of compositions are A133494.
Compositions of partitions are A323583.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 11 2020
STATUS
approved