OFFSET
1,3
FORMULA
Unsigned series reversion yields A141383, the g.f. G(x) of which satisfies: G(x) = x + G(G(G(G(x))))^2.
EXAMPLE
G.f.: A(x) = x + x^2 - 6*x^3 + 69*x^4 - 1062*x^5 + 19462*x^6 +...
Compare the iterations:
A(A(A(x))) = x + 3*x^2 - 12*x^3 + 126*x^4 - 1856*x^5 + 33110*x^6 +...
A(A(A(A(x)))) = x + 4*x^2 - 12*x^3 + 126*x^4 - 1856*x^5 + 33110*x^6 +...
PROG
(PARI) {a(n)=local(A=x+sum(k=2, n-1, a(k)*x^k)+x*O(x^n), B=subst(A, x, A)); polcoeff(x+x^2+subst(B, x, A)-subst(B, x, B), n)}
CROSSREFS
KEYWORD
sign
AUTHOR
Paul D. Hanna, May 12 2010
STATUS
approved