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 A107946 #8 Jan 31 2018 19:00:42 %S A107946 1,1,1,2,1,2,3,5,1,2,3,5,6,8,11,16,1,2,3,5,6,8,11,16,17,19,22,27,33, %T A107946 41,52,68,1,2,3,5,6,8,11,16,17,19,22,27,33,41,52,68,69,71,74,79,85,93, %U A107946 104,120,137,156,178,205,238,279,331,399,1,2,3,5,6,8,11,16,17,19,22,27,33 %N A107946 Start with S(0)={1}, then S(k+1) equals the concatenation of S(k) with the partial sums of S(k); the limit gives this sequence. %C A107946 The partial sums is A107947. Terms at positions 2^k forms A107948. %H A107946 Ivan Neretin, <a href="/A107946/b107946.txt">Table of n, a(n) for n = 1..8192</a> %e A107946 Concatenate the initial 2^3 terms: {1,1,1,2,1,2,3,5} to the partial sums {1,2,3,5,6,8,11,16} %e A107946 to obtain the initial 2^4 terms: {1,1,1,2,1,2,3,5, 1,2,3,5,6,8,11,16}. %t A107946 Nest[Join[#, Accumulate@#] &, {1}, 7] (* _Ivan Neretin_, Jan 31 2018 *) %o A107946 (PARI) {a(n)=local(A=[1,1],B=[1]);for(i=1,#binary(n)-1, B=concat(B,vector(#B,k,polcoeff(Ser(A)/(1-x),#B+k-1)));A=concat(A,B););A[n]} %Y A107946 Cf. A107947, A107948. %K A107946 nonn,look %O A107946 1,4 %A A107946 _Paul D. Hanna_, May 28 2005