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 A132331 #5 Jan 21 2021 22:12:01 %S A132331 1,3,3,10,18,18,72,93,141,381,423,990,1701,2304,4998,7275,12960,21195, %T A132331 34812,58860,90576,163603,239445,413964,669096,1017918,1768608, %U A132331 2639988,4383036,6880680,10911267,17411292,26930250,43797420,66324909,107180772 %N A132331 G.f.: A(x) = (A_1)^3 where A_1 = 1 + x*(A_2)^3; A_2 = 1 + x^2*(A_3)^3; A_3 = 1 + x^3*(A_4)^3; ... A_n = 1 + x^n*(A_{n+1})^3 for n>=1. %F A132331 Self-convolution cube of A132330. %o A132331 (PARI) {a(n)=local(A=1+x*O(x^n)); for(j=0,n-1,A=1+x^(n-j)*A^3);polcoeff(A^3,n)} %Y A132331 Cf. A132330 (cube-root); A001764; A095830 (variant). %K A132331 nonn %O A132331 0,2 %A A132331 _Paul D. Hanna_, Aug 20 2007