OFFSET
0,3
FORMULA
G.f. A(x) satisfies:
(1) x*A(x)^6 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n+1)) * A(x)^n.
(2) -x*A(x)^7 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n+1)) / A(x)^n.
(3) x*A(x)^6 = Product_{n>=1} (1 - x^(2*n)*A(x)) * (1 - x^(2*n-2)/A(x)) * (1 - x^(2*n)), due to the Jacobi triple product identity.
(4) -x*A(x)^7 = Product_{n>=1} (1 - x^(2*n)/A(x)) * (1 - x^(2*n-2)*A(x)) * (1 - x^(2*n)), due to the Jacobi triple product identity.
EXAMPLE
G.f.: A(x) = 1 + x + 7*x^2 + 73*x^3 + 861*x^4 + 11112*x^5 + 151822*x^6 + 2159143*x^7 + 31627140*x^8 + 473909468*x^9 + 7230035454*x^10 + ...
such that
x*A(x)^6 = ... + x^12/A(x)^4 - x^6/A(x)^3 + x^2/A(x)^2 - 1/A(x) + 1 - x^2*A(x) + x^6*A(x)^2 - x^12*A(x)^3 + x^20*A(x)^4 + ... + (-1)^n * x^(n*(n+1)) * A(x)^n + ...
PROG
(PARI) {a(n, p=6) = my(A=[1]); for(i=1, n, A=concat(A, 0);
A[#A] = polcoeff( x*Ser(A)^p - sum(m=-ceil(sqrt(n)), ceil(sqrt(n)), (-1)^m*x^(m*(m+1))*Ser(A)^m ), #A-1)); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 18 2022
STATUS
approved