A332274 Number of totally strong compositions of n.
1, 1, 2, 4, 7, 11, 22, 33, 56, 93, 162, 264, 454, 765, 1307, 2237, 3849, 6611, 11472, 19831, 34446, 59865, 104293, 181561, 316924
Offset: 0
Examples
The a(1) = 1 through a(5) = 11 compositions: (1) (2) (3) (4) (5) (11) (12) (13) (14) (21) (22) (23) (111) (31) (32) (121) (41) (211) (122) (1111) (131) (212) (311) (2111) (11111)
Crossrefs
Programs
-
Mathematica
tni[q_]:=Or[q=={},q=={1},And[GreaterEqual@@Length/@Split[q],tni[Length/@Split[q]]]]; Table[Length[Select[Join@@Permutations/@IntegerPartitions[n],tni]],{n,0,15}]
Comments