This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A353744 #7 Jun 12 2022 22:52:21 %S A353744 0,1,2,3,4,5,6,7,8,9,10,12,13,15,16,17,18,20,22,24,25,31,32,33,34,36, %T A353744 37,38,40,41,42,43,44,45,48,49,50,52,54,58,63,64,65,66,68,69,70,72,76, %U A353744 77,80,81,82,88,89,96,97,98,101,102,104,105,108,109,127,128 %N A353744 Numbers k such that the k-th composition in standard order has all equal run-lengths. %C A353744 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. %e A353744 Composition 2362 in standard order is (3,3,1,1,2,2), with run-lengths (2,2,2), so 2362 is in the sequence. %t A353744 stc[n_]:=Differences[Prepend[Join@@ Position[Reverse[IntegerDigits[n,2]],1],0]]//Reverse; %t A353744 Select[Range[0,100],SameQ@@Length/@Split[stc[#]]&] %Y A353744 Standard compositions are listed by A066099. %Y A353744 The version for partitions is A072774, counted by A047966. %Y A353744 These compositions are counted by A329738. %Y A353744 For distinct instead of equal run-lengths we have A351596. %Y A353744 For run-sums instead of lengths we have A353848, counted by A353851. %Y A353744 For distinct run-sums we have A353852, counted by A353850. %Y A353744 A003242 counts anti-run compositions, ranked by A333489. %Y A353744 A005811 counts runs in binary expansion. %Y A353744 A300273 ranks collapsible partitions, counted by A275870. %Y A353744 A353838 ranks partitions with all distinct run-sums, counted by A353837. %Y A353744 A353847 represents the composition run-sum transformation. %Y A353744 A353853-A353859 pertain to composition run-sum trajectory. %Y A353744 A353860 counts collapsible compositions. %Y A353744 A353833 ranks partitions with all equal run-sums, counted by A304442. %Y A353744 Cf. A029837, A071625, A124767, A175413, A238279, A333381, A333755, A353834, A353849. %K A353744 nonn %O A353744 1,3 %A A353744 _Gus Wiseman_, Jun 11 2022