cp's OEIS Frontend

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.

A212030 G.f. satisfies: A(x) = 1 + x*A(x*A(x)^2)^3.

This page as a plain text file.
%I A212030 #6 Sep 03 2024 14:35:02
%S A212030 1,1,3,18,142,1350,14607,174626,2263749,31426878,463144150,7199095692,
%T A212030 117452998632,2003613768328,35628141598164,658723330672311,
%U A212030 12636278430184303,251042922016657782,5156985005918404047,109382326645948764003,2392477607054828471286
%N A212030 G.f. satisfies: A(x) = 1 + x*A(x*A(x)^2)^3.
%e A212030 G.f.: A(x) = 1 + x + 3*x^2 + 18*x^3 + 142*x^4 + 1350*x^5 + 14607*x^6 +...
%e A212030 Related expansions:
%e A212030 A(x)^2 = 1 + 2*x + 7*x^2 + 42*x^3 + 329*x^4 + 3092*x^5 + 33090*x^6 +...
%e A212030 A(x)^3 = 1 + 3*x + 12*x^2 + 73*x^3 + 570*x^4 + 5307*x^5 + 56226*x^6 +...
%e A212030 A(x*A(x)^2) = 1 + x + 5*x^2 + 37*x^3 + 346*x^4 + 3745*x^5 + 45132*x^6 +...
%e A212030 A(x*A(x)^2)^3 = 1 + 3*x + 18*x^2 + 142*x^3 + 1350*x^4 + 14607*x^5 +...
%o A212030 (PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=0, n, A=1+x*subst(A^3, x, x*A^2)); polcoeff(A, n)}
%o A212030 for(n=0,30,print1(a(n),", "))
%Y A212030 Cf. A143508, A143501, A212029.
%K A212030 nonn
%O A212030 0,3
%A A212030 _Paul D. Hanna_, Apr 27 2012