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..200
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 - 2*A(x))^(2*n+1).
(2) 0 = Sum_{n=-oo..+oo} x^(2*n*(n-1)) / (1 - 2*A(x)*(-x)^n)^(2*n-1).
EXAMPLE
G.f.: A(x) = 1 + 3*x + 25*x^2 + 254*x^3 + 2844*x^4 + 34031*x^5 + 426498*x^6 + 5526399*x^7 + 73433377*x^8 + 995167783*x^9 + 13701794657*x^10 + ...
PROG
(PARI) {a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0);
A[#A] = polcoeff( sum(m=-#A, #A, x^m * (x^m - (-1)^m*2*Ser(A))^(2*m+1) ), #A-1)/2); A[n+1]}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 04 2022
STATUS
approved