Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A374638
Numbers k such that the leaders of anti-runs in the k-th composition in standard order (A066099) are distinct.
24
0, 1, 2, 4, 5, 6, 8, 9, 11, 12, 13, 16, 17, 18, 19, 20, 22, 24, 25, 26, 32, 33, 34, 35, 37, 38, 40, 41, 44, 45, 46, 48, 49, 50, 52, 53, 54, 64, 65, 66, 67, 68, 69, 70, 72, 74, 75, 76, 77, 78, 80, 81, 82, 83, 88, 89, 91, 92, 93, 96, 97, 98, 100, 101, 102, 104
OFFSET
1,3
COMMENTS
The leaders of anti-runs in a sequence are obtained by splitting it into maximal consecutive anti-runs (sequences with no adjacent equal terms) and taking the first term of each.
The k-th composition in standard order (graded reverse-lexicographic, A066099) is obtained by taking the set of positions of 1's in the reversed binary expansion of k, prepending 0, taking first differences, and reversing again. This gives a bijective correspondence between nonnegative integers and integer compositions.
EXAMPLE
The terms together with corresponding compositions begin:
0: ()
1: (1)
2: (2)
4: (3)
5: (2,1)
6: (1,2)
8: (4)
9: (3,1)
11: (2,1,1)
12: (1,3)
13: (1,2,1)
16: (5)
17: (4,1)
18: (3,2)
19: (3,1,1)
20: (2,3)
22: (2,1,2)
24: (1,4)
25: (1,3,1)
26: (1,2,2)
MATHEMATICA
stc[n_]:=Differences[Prepend[Join @@ Position[Reverse[IntegerDigits[n, 2]], 1], 0]]//Reverse;
Select[Range[0, 100], UnsameQ@@First/@Split[stc[#], UnsameQ]&]
CROSSREFS
Positions of distinct (strict) rows in A374515.
Compositions of this type are counted by A374518.
For identical instead of distinct we have A374519, counted by A374517.
The complement is A374639.
Other types of runs (instead of anti-):
- For identical runs we have A374249, counted by A274174.
- For weakly increasing runs we have A374768, counted by A374632.
- For strictly increasing runs we have A374698, counted by A374687.
- For weakly decreasing runs we have A374701, counted by A374743.
- For strictly decreasing runs we have A374767, counted by A374761.
A065120 gives leaders of standard compositions.
A106356 counts compositions by number of maximal anti-runs.
A238279 counts compositions by number of maximal runs
A238424 counts partitions whose first differences are an anti-run.
All of the following pertain to compositions in standard order:
- Length is A000120.
- Sum is A029837(n+1).
- Parts are listed by A066099.
- Number of adjacent equal pairs is A124762, unequal A333382.
- Anti-runs are ranked by A333489, counted by A003242.
- Run-length transform is A333627, sum A070939.
- Run-compression transform is A373948, sum A373953, excess A373954.
Six types of maximal runs:
Sequence in context: A288998 A289026 A289113 * A374767 A289166 A247161
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 01 2024
STATUS
approved