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 A348413 #14 Dec 02 2021 13:56:06 %S A348413 1,2,4,8,16,28,57,114,221,451,893,1792,3549,7104,14212,28445,56894, %T A348413 113792,227554,455124,910208,1820449,3640907,7281813,14563613, %U A348413 29127251,58254501,116508984,233017889,466035877,932071736 %N A348413 a(0) = A002858(1) = 1, followed by the greatest Ulam numbers A002858 to form a complete sequence (see algorithm below). %C A348413 This sequence starts at a(0)=1, subsequent terms a(n) for n>0 being obtained by selecting the (greatest Ulam number) <= 1+Sum_{i=0..n-1} a(i). This ensures that the sequence is complete because Sum_{i=0..n-1} a(i) >= a(n)-1, for all n>=0 and a(0)=1, is a necessary and sufficient condition for completeness. %H A348413 Wikipedia, <a href="http://en.wikipedia.org/wiki/Ulam_number">Ulam number</a>. %F A348413 a(n) = (greatest Ulam number) <= 1+Sum_{i=0..n-1} a(i), with a(0) = 1. %e A348413 Given that the first 7 terms of the sequence are 1, 2, ..., 28, 57 then a(7)=(greatest Ulam number) <= (1+2+...+28, 57) + 1 = 117, hence a(7)=114. %t A348413 lst1 = Last/@ReadList["https://oeis.org/A002858/b002858.txt", {Number, Number}]; lst={1, 2}; n=3; Do[s=Total@lst; While[s+1>=lst1[[n]], n++]; AppendTo[lst, lst1[[n-1]]], 16]; lst %Y A348413 Cf. A002858. %K A348413 nonn,more %O A348413 0,2 %A A348413 _Frank M Jackson_, Oct 17 2021 %E A348413 a(18)-a(30) from _Amiram Eldar_, Oct 17 2021