OFFSET
0,7
COMMENTS
A composition of n is a finite sequence of positive integers summing to n. It is strict if there are no repeated parts.
LINKS
Eric Weisstein's World of Mathematics, Unimodal Sequence
EXAMPLE
The a(6) = 4 through a(9) = 12 compositions:
(1,3,2) (1,4,2) (1,4,3) (1,5,3)
(2,1,3) (2,1,4) (1,5,2) (1,6,2)
(2,3,1) (2,4,1) (2,1,5) (2,1,6)
(3,1,2) (4,1,2) (2,5,1) (2,4,3)
(3,1,4) (2,6,1)
(3,4,1) (3,1,5)
(4,1,3) (3,2,4)
(5,1,2) (3,4,2)
(3,5,1)
(4,2,3)
(5,1,3)
(6,1,2)
MATHEMATICA
Table[Length[Select[Join@@Permutations/@IntegerPartitions[n], UnsameQ@@#&&!Greater@@#&&!Less@@#&]], {n, 0, 10}]
CROSSREFS
The non-strict case is A332834.
The complement is counted by A333147.
Strict partitions are A000009.
Strict compositions are A032020.
Non-unimodal strict compositions are A072707.
Strict partitions with increasing or decreasing run-lengths are A333190.
Strict compositions with increasing or decreasing run-lengths are A333191.
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 16 2020
STATUS
approved