OFFSET
0,4
FORMULA
G.f. satisfies: A( x/(1 + x*A(x^2)) ) = 1 + x*A(x^2).
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + 2*x^3 + 5*x^4 + 12*x^5 + 30*x^6 + 80*x^7 +...
Related expansions.
1/(1+x*A(x^2)) = 1 - x + x^2 - 2*x^3 + 3*x^4 - 5*x^5 + 8*x^6 - 14*x^7 +...
compare to the series reversion of x*A(x), which begins:
x - x^2 + x^3 - 2*x^4 + 3*x^5 - 5*x^6 + 8*x^7 - 14*x^8 + 23*x^9 +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1/x*serreverse(x/(1+x*subst(A, x, x^2 +x*O(x^n))))); polcoeff(A, n)}
for(n=0, 31, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 02 2012
STATUS
approved