OFFSET
0,3
FORMULA
G.f.: 1 + Series_Reversion(x - 8*x^2 - 24*x^3 - 30*x^4 - 20*x^5 - 7*x^6 - x^7).
EXAMPLE
G.f.: A(x) = 1 + x + 8*x^2 + 152*x^3 + 3550*x^4 + 92788*x^5 +...
Related expansions.
A(x)^3 = 1 + 3*x + 27*x^2 + 505*x^3 + 11778*x^4 + 307608*x^5 +...
A(x)^5 = 1 + 5*x + 50*x^2 + 930*x^3 + 21675*x^4 + 565901*x^5 +...
A(x)^7 = 1 + 7*x + 77*x^2 + 1435*x^3 + 33453*x^4 + 873509*x^5 +...
where 1+x = A(x)^3 + A(x)^5 - A(x)^7.
PROG
(PARI) /* From 1+x = A(x)^3 + A(x)^5 - A(x)^7: */
{a(n)=local(A=[1, 1]); for(i=1, n, A=concat(A, 0); A[#A]=-Vec(Ser(A)^3+Ser(A)^5-Ser(A)^7)[#A]); A[n+1]}
for(n=0, 25, print1(a(n) , ", "))
(PARI) /* From Series Reversion: */
{a(n)=local(A=1+serreverse(x - 8*x^2 - 24*x^3 - 30*x^4 - 20*x^5 - 7*x^6 - x^7 + x^2*O(x^n))); polcoeff(A, n)}
for(n=0, 25, print1(a(n) , ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 27 2014
STATUS
approved