OFFSET
0,3
COMMENTS
Compare definition of g.f. to:
(1) B(x) = 1 + x/B(-x*B(x)) when B(x) = 1/(1-x).
(2) C(x) = 1 + x/C(-x*C(x)^3)^2 when C(x) = 1 + x*C(x)^2 is the g.f. of the Catalan numbers (A000108).
(3) D(x) = 1 + x/D(-x*D(x)^5)^3 when D(x) = 1 + x*D(x)^3 is the g.f. of the ternary tree numbers (A001764).
The first negative term is a(193). - Georg Fischer, Feb 16 2019
LINKS
Paul D. Hanna, Table of n, a(n) for n = 0..300
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 15*x^3 + 82*x^4 + 549*x^5 + 3957*x^6 +...
Related expansions:
A(x)^6 = 1 + 6*x + 33*x^2 + 200*x^3 + 1272*x^4 + 8730*x^5 + 63628*x^6 +...
A(-x*A(x)^6)^3 = 1 - 3*x - 6*x^2 - 19*x^3 - 156*x^4 - 1065*x^5 - 9165*x^6 -...
MATHEMATICA
m = 22; A[_] = 1; Do[A[x_] = 1 + x/A[-x A[x]^6 + O[x]^m]^3 // Normal, {m}];
CoefficientList[A[x], x] (* Jean-François Alcover, Nov 05 2019 *)
PROG
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=1, n, A=1+x/subst(A^3, x, -x*subst(A^6, x, x+x*O(x^n))) ); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
sign
AUTHOR
Paul D. Hanna, Jun 05 2012
STATUS
approved