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 A329474 #16 Nov 14 2019 10:42:55 %S A329474 0,1,1,2,2,4,5,6,6,12,17,21,23,25,26,27,27,54,80,105,128,149,166,178, %T A329474 184,190,195,199,201,203,204,205,205,410,614,817,1018,1217,1412,1602, %U A329474 1786,1964,2130,2279,2407,2512,2592,2646,2673,2700,2726,2751,2774,2795,2812,2824,2830 %N A329474 a(n) = log_2(A110428(n)). Also, a(n) = a(n-1) + a(m) for n >= 3, where m = 2^(p+1) + 2 - n and p is the unique integer such that 2^p < n - 1 <= 2^(p+1), starting with a(1) = 0 and a(2) = 1. %F A329474 2^a(n) = A110428(n). %p A329474 a := proc(n) option remember; %p A329474 `if`(n < 3, [0, 1][n], a(n - 1) + a(2^ceil(log[2](n - 1)) + 2 - n)); end proc; %p A329474 seq(a(n), n = 1..50); # %Y A329474 Cf. A050049, A050069, A110428. %K A329474 nonn %O A329474 1,4 %A A329474 _Petros Hadjicostas_, Nov 13 2019