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 A103621 #34 Jan 14 2024 02:32:06 %S A103621 7,9,11,13,23,25,27,61,71,73,75,77,87,89,91,125,135,137,139,141,151, %T A103621 153,155,189,199,201,203,205,215,217,219,253,263,265,267,269,279,281, %U A103621 283,317,327,329,331,333,343,345,347,381,391,393,395,397,407,409,411,445 %N A103621 Trajectory of 7 under repeated application of the map n -> A102370(n). %C A103621 Initially, first differences are 8-periodic: 2,2,2,10,2,2,34,10. [Unsigned comment made accurate by _Peter Munn_, Jan 13 2024] %H A103621 David Applegate, Benoit Cloitre, Philippe Deléham and N. J. A. Sloane, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL8/Sloane/sloane300.html">Sloping binary numbers: a new sequence related to the binary numbers</a>, J. Integer Seq. 8 (2005), no. 3, Article 05.3.6, 15 pp. %F A103621 Conjectures from _Chai Wah Wu_, Feb 01 2018: (Start) %F A103621 a(n) = a(n-1) + a(n-8) - a(n-9) for n > 9. %F A103621 G.f.: x*(3*x^8 + 34*x^7 + 2*x^6 + 2*x^5 + 10*x^4 + 2*x^3 + 2*x^2 + 2*x + 7)/(x^9 - x^8 - x + 1). (End) %F A103621 The above conjectures are incompatible with A102370(2^37-37) = 2^38-3. - _Peter Munn_, Jan 13 2024 %t A103621 f[n_] := Block[{k = 1, s = 0, l = Max[2, Floor[ Log[2, n + 1] + 2]]}, While[k < l, If[ Mod[n + k, 2^k] == 0, s = s + 2^k]; k++ ]; s + n]; NestList[f, 7, 55] (* _Robert G. Wilson v_, Mar 30 2005 *) %Y A103621 Cf. A102370. %Y A103621 Trajectories of other numbers A103192 (1), A103747 (2), A158953 (12), A159887 (29). %K A103621 nonn,base %O A103621 1,1 %A A103621 _Philippe Deléham_, Mar 31 2005 %E A103621 More terms from _Robert G. Wilson v_, Mar 30 2005