A374744 Numbers k such that the leaders of weakly decreasing runs in the k-th composition in standard order (A066099) are identical.
0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 15, 16, 17, 18, 19, 21, 22, 23, 31, 32, 33, 34, 35, 36, 37, 39, 42, 43, 45, 46, 47, 63, 64, 65, 66, 67, 68, 69, 71, 73, 74, 75, 76, 79, 85, 86, 87, 90, 91, 93, 94, 95, 127, 128, 129, 130, 131, 132, 133, 135, 136, 137, 138
Offset: 1
Keywords
Examples
The terms together with the corresponding compositions begin: 0: () 1: (1) 2: (2) 3: (1,1) 4: (3) 5: (2,1) 7: (1,1,1) 8: (4) 9: (3,1) 10: (2,2) 11: (2,1,1) 15: (1,1,1,1) 16: (5) 17: (4,1) 18: (3,2) 19: (3,1,1) 21: (2,2,1) 22: (2,1,2) 23: (2,1,1,1) 31: (1,1,1,1,1)
Links
Crossrefs
Other types of runs and their counts: A272919 (A000005), A374519 (A374517), A374685 (A374686), A374759 (A374760).
Compositions of this type are counted by A374742.
A011782 counts compositions.
A374748 counts compositions by sum of leaders of weakly decreasing runs.
All of the following pertain to compositions in standard order:
- Length is A000120.
- Parts are listed by A066099.
- Run-length transform is A333627.
Programs
-
Mathematica
stc[n_]:=Differences[Prepend[Join @@ Position[Reverse[IntegerDigits[n,2]],1],0]]//Reverse; Select[Range[0,100],SameQ@@First/@Split[stc[#],GreaterEqual]&]
Comments