OFFSET
1,3
FORMULA
G.f. satisfies: A( x - A(A(A(x^2))) ) = x.
EXAMPLE
G.f.: A(x) = x + x^2 + 2*x^3 + 8*x^4 + 32*x^5 + 138*x^6 + 624*x^7 +...
Related expansions:
A(A(x)) = x + 2*x^2 + 6*x^3 + 27*x^4 + 134*x^5 + 706*x^6 + 3892*x^7 +...
A(A(A(A(x)))) = x + 4*x^2 + 20*x^3 + 122*x^4 + 820*x^5 + 5838*x^6 +...
A(A(A(A(x)^2))) = x^2 + 2*x^3 + 8*x^4 + 32*x^5 + 138*x^6 + 624*x^7 +...
The series reversion of A(x) = x - A(A(A(x^2))), where
A(A(A(x^2))) = x^2 + 3*x^4 + 12*x^6 + 63*x^8 + 368*x^10 + 2282*x^12 +...
PROG
(PARI) {a(n)=local(A=x+x^2); for(i=1, n, A=x+subst(A, x, subst(A, x, subst(A, x, A^2+x*O(x^n))))); polcoeff(A, n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 28 2008
STATUS
approved