A354579 Number of distinct lengths of runs in the n-th composition in standard order.
0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 2, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 2, 2, 1, 1, 2, 2, 1, 1, 1, 2, 2, 2, 2
Offset: 0
Keywords
Examples
The positions of first appearances together with the corresponding compositions begin: 1: (1) 11: (2,1,1) 119: (1,1,2,1,1,1) 5615: (2,2,1,1,1,2,1,1,1,1) 251871: (1,1,1,2,2,1,1,1,1,2,1,1,1,1,1)
Crossrefs
Standard compositions are listed by A066099.
The version for partitions is A071625.
Positions of first appearances are A354906.
A005811 counts runs in binary expansion.
A333627 ranks the run-lengths of standard compositions.
A353847 ranks the run-sums of standard compositions.
A353860 counts collapsible compositions.
Programs
-
Mathematica
stc[n_]:=Differences[Prepend[Join@@ Position[Reverse[IntegerDigits[n,2]],1],0]]//Reverse; Table[Length[Union[Length/@Split[stc[n]]]],{n,0,100}]
Comments