OFFSET
0,3
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 21*x^3 + 190*x^4 + 2112*x^5 + 26922*x^6 +...
Related expansions:
A(x)^3 = 1 + 3*x + 12*x^2 + 82*x^3 + 732*x^4 + 7944*x^5 + 99156*x^6 +..
A(x*A(x)^3) = 1 + x + 6*x^2 + 51*x^3 + 560*x^4 + 7155*x^5 + 102495*x^6 +...
A(x*A(x)^3)^3 = 1 + 3*x + 21*x^2 + 190*x^3 + 2112*x^4 + 26922*x^5 +...
PROG
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=0, n, A=1+x*subst(A^3, x, x*A^3)); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 27 2012
STATUS
approved