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 A355748 #9 Jul 23 2022 23:07:40 %S A355748 1,1,2,1,2,2,2,1,3,2,4,2,2,2,2,1,2,3,4,2,4,4,4,2,3,2,4,2,2,2,2,1,4,2, %T A355748 6,3,4,4,4,2,6,4,8,4,4,4,4,2,2,3,4,2,4,4,4,2,3,2,4,2,2,2,2,1,2,4,4,2, %U A355748 6,6,6,3,6,4,8,4,4,4,4,2,4,6,8,4,8,8,8 %N A355748 Number of ways to choose a sequence of divisors, one of each part of the n-th composition in standard order. %C A355748 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 A355748 Composition number 152 in standard order is (3,1,4), and the a(152) = 6 choices are: (1,1,1), (1,1,2), (1,1,4), (3,1,1), (3,1,2), (3,1,4). %t A355748 stc[n_]:=Differences[Prepend[Join@@Position[Reverse[IntegerDigits[n,2]],1],0]]//Reverse; %t A355748 Table[Times@@Length/@Divisors/@stc[n],{n,0,100}] %Y A355748 Positions of 1's are A000079 (after the first). %Y A355748 The anti-run case is A354578, zeros A354904, firsts A354905. %Y A355748 An unordered version (using prime indices) is A355731: %Y A355748 - firsts A355732, %Y A355748 - resorted A355733, %Y A355748 - weakly increasing A355735, %Y A355748 - relatively prime A355737, %Y A355748 - strict A355739. %Y A355748 A000005 counts divisors. %Y A355748 A003963 multiplies together the prime indices of n. %Y A355748 A005811 counts runs in binary expansion. %Y A355748 A029837 adds up standard compositions, lengths A000120. %Y A355748 A066099 lists the compositions in standard order. %Y A355748 A353851 counts compositions with all equal run-sums, ranked by A353848. %Y A355748 A353852 ranks compositions with all distinct run-sums, counted by A353850. %Y A355748 Cf. A124767, A175413, A238279, A274174, A326841, A333381, A333755, A353847, A353849, A355747. %K A355748 nonn %O A355748 0,3 %A A355748 _Gus Wiseman_, Jul 23 2022