OFFSET
0,3
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 17*x^3 + 85*x^4 + 333*x^5 + 1883*x^6 +...
Related expansions:
A(x)^2 = 1 + 2*x + 7*x^2 + 40*x^3 + 213*x^4 + 938*x^5 + 5231*x^6 +...
A(x)^3 = 1 + 3*x + 12*x^2 + 70*x^3 + 393*x^4 + 1893*x^5 + 10632*x^6 +...
A(x)*A(-x) = 1 + 5*x^2 + 145*x^4 + 3321*x^6 + 133553*x^8 + 4103661*x^10 +...
A(I*x)*A(-I*x) = 1 - 5*x^2 + 145*x^4 - 3321*x^6 + 133553*x^8 - 4103661*x^10 + 184486609*x^12 - 6359604209*x^14 + 302240850145*x^16 - 11073953305621*x^18 +...
Note that a bisection of 1/A(x)^2 equals a bisection of 1/A(x)^3:
1/A(x)^2 = 1 - 2*x - 3*x^2 - 20*x^3 - 72*x^4 - 108*x^5 - 1196*x^6 +...
1/A(x)^3 = 1 - 3*x - 3*x^2 - 25*x^3 - 72*x^4 + 12*x^5 - 1196*x^6 +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+x*A^3/(subst(A, x, I*x+x*O(x^n))*subst(A, x, -I*x+x*O(x^n)))); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 14 2012
STATUS
approved