OFFSET
0,3
LINKS
Robert Israel, Table of n, a(n) for n = 0..700
FORMULA
G.f.: 1 + Series_Reversion(x - 5*x^2 - 15*x^3 - 20*x^4 - 15*x^5 - 6*x^6 - x^7).
EXAMPLE
G.f.: A(x) = 1 + x + 5*x^2 + 65*x^3 + 1020*x^4 + 17915*x^5 + ...
Related expansions.
A(x)^2 = 1 + 2*x + 11*x^2 + 140*x^3 + 2195*x^4 + 38520*x^5 + ...
A(x)^6 = 1 + 6*x + 45*x^2 + 560*x^3 + 8760*x^4 + 153546*x^5 + ...
A(x)^7 = 1 + 7*x + 56*x^2 + 700*x^3 + 10955*x^4 + 192066*x^5 + ...
where 1+x = A(x)^2 + A(x)^6 - A(x)^7.
MAPLE
S:= series(RootOf(1+x-(y^2+y^6-y^7), y, 1), x, 26):
seq(coeff(S, x, i), i=0..25); # Robert Israel, Mar 22 2023
PROG
(PARI) /* From 1+x = A(x)^2 + A(x)^6 - A(x)^7: */
{a(n)=local(A=[1, 1]); for(i=1, n, A=concat(A, 0); A[#A]=-Vec(Ser(A)^2+Ser(A)^6-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 - 5*x^2 - 15*x^3 - 20*x^4 - 15*x^5 - 6*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