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 A030032 #11 Oct 15 2021 08:02:13 %S A030032 1,1,1,1,2,3,5,10,18,33,66,127,244,506,1009,2018,4229,8631,17631, %T A030032 37265,77349,160433,342807,720334,1513791,3254445,6902283,14634519, %U A030032 31602375,67522598,144182089,312851626,672411931,1444776938,3145883976,6794243911,14667444523 %N A030032 a(n+1) = Sum_{k=0..floor(n/3)} a(k) * a(n-k). %H A030032 Seiichi Manyama, <a href="/A030032/b030032.txt">Table of n, a(n) for n = 0..1000</a> %o A030032 (PARI) lista(nn) = {my(v=vector(nn+2, i, 1)); for(n=3, nn, v[n+2]=sum(k=1, 1+n\3, v[k]*v[n+2-k])); v; } \\ _Jinyuan Wang_, Mar 18 2020 %Y A030032 Cf. A000992, A030034, A030036. %K A030032 nonn %O A030032 0,5 %A A030032 _N. J. A. Sloane_ %E A030032 More terms from _Jinyuan Wang_, Mar 18 2020