OFFSET
0,2
COMMENTS
Compare to the identity: 0 = Sum_{n=-oo..+oo} x^n * (y - x^n)^n which holds for all y.
LINKS
Paul D. Hanna, Table of n, a(n) for n = 0..250
FORMULA
G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies the following formulas.
(1) 0 = Sum_{n=-oo..+oo} x^n * (x^n - A(x))^(3*n+1).
(2) 0 = Sum_{n=-oo..+oo} x^(n*(3*n-2)) / (1 - A(x)*x^n)^(3*n-1).
EXAMPLE
G.f.: A(x) = 1 + 2*x + 5*x^2 + 20*x^3 + 77*x^4 + 319*x^5 + 1357*x^6 + 5861*x^7 + 25934*x^8 + 117970*x^9 + 554949*x^10 + 2713732*x^11 + ...
where
0 = ... + x^(-3)/(x^(-3) - A(x))^8 + x^(-2)/(x^(-2) - A(x))^5 + x^(-1)/(x^(-1) - A(x))^2 + (1 - A(x)) + x*(x - A(x))^4 + x^2*(x^2 - A(x))^7 + x^3*(x^3 - A(x))^10 + ... + x^n * (x^n - A(x))^(3*n+1) + ...
PROG
(PARI) {a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0);
A[#A] = polcoeff( sum(n=-#A, #A, x^n*(x^n - Ser(A))^(3*n+1) ), #A-1)); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 04 2022
STATUS
approved