login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A357224 Coefficients in the power series A(x) such that: x*A(x)^4 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n+1)) * A(x)^n. 6
1, 1, 5, 38, 315, 2855, 27325, 272030, 2788042, 29221793, 311767823, 3374650902, 36968040004, 409076635878, 4565873250981, 51342245169913, 581093383193700, 6614534942714496, 75675364150733073, 869713202188274489, 10036085000519702155, 116238137830534589525 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. A(x) satisfies:
(1) x*A(x)^4 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n+1)) * A(x)^n.
(2) -x*A(x)^5 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n+1)) / A(x)^n.
(3) x*A(x)^4 = 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)^5 = 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 + 5*x^2 + 38*x^3 + 315*x^4 + 2855*x^5 + 27325*x^6 + 272030*x^7 + 2788042*x^8 + 29221793*x^9 + 311767823*x^10 + ...
such that
x*A(x)^4 = ... + 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=4) = 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
Sequence in context: A073508 A282964 A357163 * A247773 A207411 A316598
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 18 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 28 12:13 EDT 2024. Contains 372085 sequences. (Running on oeis4.)