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 A308115 #29 Jan 30 2020 04:22:10 %S A308115 1,2,4,6,8,12,16,18,20,24,30,32,36,40,42,48,54,60,64,72,80,84,90,96, %T A308115 100,108,120,126,128,140,144,150,156,160,162,168,180,192,198,200,210, %U A308115 216,220,240,252,256,264,270,272,280,288,294,300,312,320,324,330,336 %N A308115 Rhythmic numbers: each number in this list is the least common multiple of some set of numbers S such that 1 is in S and every element of S except for 1 is a sum of two other elements of S. %C A308115 ---------------------------Rhythmic structure example:---------------------------Enunciation: aababbccdbfe. Legend: a-a; b-aa; c-ba; d-bb; e-cc; f-db; g-fe. Unfolding: g (fe) (db)e db(cc) (bb)bcc bbb(ba)(ba) (aa)(aa)(aa)(aa)a(aa)a. "a" is a time unity. Each letter lasts the time of the sum of two others. The least common multiple of all letters is 12 (= a(6) in the sequence). This structure may represent alternated musical measures of 3/4 6/8. %C A308115 Equivalently, this sequence corresponds to numbers that are the least common multiple of the terms of some addition chain. - _Rémy Sigrist_, May 23 2019 %H A308115 Zizheng Fang, <a href="/A308115/b308115.txt">Table of n, a(n) for n = 1..1999</a> %H A308115 Zizheng Fang, <a href="/A308115/a308115.txt">Python program for generating A308115</a> %e A308115 1: divisors -- 1; binary sums -- 2; least common multiples -- 2. %e A308115 2: divisors -- 1, 2; binary sums -- 2, 3, 4; least common multiples -- 4, 6. %e A308115 4: divisors -- 1, 2, 4; binary sums -- 2, 3, 4, 5, 6, 8; least common multiples -- 6, 8, 12, 20, 24. %e A308115 6: divisors -- 1, 2, 3, 6; binary sums -- 2, 3, 4, 5, 6, 7, 8, 9, 12; least common multiples -- 8, 12, 18, 20, 24, 30, 42. %e A308115 8: divisors -- 1, 2, 4, 8; binary sums -- 2, 3, 4, 5, 6, 8, 9, 10, 12, 16; least common multiples -- 12, 16, 18, 20, 24, 30, 40, 42, 72. %o A308115 Computing rhythmic numbers (generic draft program): %o A308115 % let N be the variable set of proposed numbers %o A308115 N = {1}; %o A308115 for n = 1 to (number of wanted terms) %o A308115 % extract the least number %o A308115 a(n) = (least number of N); N = N - {a(n)}; %o A308115 % make new proposed numbers %o A308115 D = {divisors of a(n)}; %o A308115 D = D - {divisors that are not binary sum of others except 1} %o A308115 for p = 1 to (cardinal of D); for q = 1 to p; %o A308115 R = (least common multiple of {a(n), D(p) + D(q)}); %o A308115 if R > a(n) % a(n) must not be reinserted in N %o A308115 % the element will be added to the set only if there isn't %o A308115 N = N + {R}; %o A308115 next q; next p; %o A308115 next n. %Y A308115 The present sequence is a subset of A174973 and the first 22 terms are equal. With divisors of 88 (= A174973(23)) we can't make any of 11, 22, 44, 88 adding two of 1, 2, 4, 8. %K A308115 nonn %O A308115 1,2 %A A308115 _Carlos Palma Ramos_, May 13 2019 %E A308115 More terms from _Rémy Sigrist_, May 23 2019