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!)
A370016 Expansion of A(x) = [ Sum_{n>=0} 2^(n*(n-1)/2) * (1 + 2^(2*n+1))/3 * x^(n*(n+1)/2) ]^(1/3). 10
1, 1, -1, 9, -18, 44, -54, 350, -1359, 3789, -9585, 42489, -163900, 543474, -1933092, 7499404, -27668718, 100329714, -371138346, 1394575578, -5236658316, 19587163968, -73536845444, 278088068628, -1052804678958, 3985553554074, -15132118280498, 57617112474306, -219680808219216 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Equals the self-convolution cube root of A370015.
LINKS
FORMULA
G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies the following formulas.
(1) A(x)^3 = Sum_{n>=0} 2^(n*(n-1)/2) * (1 + 2^(2*n+1))/3 * x^(n*(n+1)/2).
(2) A(x)^3 = Product_{n>=1} (1 + 2^(n-1)*x^n) * (1 - 2^n*x^n) * (1 + 2^(n+1)*x^n), by the Jacobi triple product identity.
(3) A(x) = Product_{n>=1} F( 2^(n-1)*x^n ), where F(x) = (1 + 3*x - 6*x^2 - 8*x^3)^(1/3).
a(n) ~ c * (-1)^(n+1) * 4^n / n^(4/3), where c = 0.260357663494676514371316... - Vaclav Kotesovec, Feb 23 2024
Radius of convergence r = 1/4 (from Vaclav Kotesovec's formula) and A(r) = ( Sum_{n>=0} (1/2^n + 2*2^n)/3 * 1/2^(n*(n+1)/2) )^(1/3) = ( Product_{n>=1} (1 + 1/2^n)*(1 - 1/4^(n+1)) )^(1/3) = 1.298389210904220681888354941631161162163... - Paul D. Hanna, Mar 07 2024
EXAMPLE
G.f.: A(x) = 1 + x - x^2 + 9*x^3 - 18*x^4 + 44*x^5 - 54*x^6 + 350*x^7 - 1359*x^8 + 3789*x^9 - 9585*x^10 + 42489*x^11 - 163900*x^12 + 543474*x^13 - 1933092*x^14 + 7499404*x^15 + ...
where the cube of g.f. A(x) yields the series
A(x)^3 = 1 + 3*x + 22*x^3 + 344*x^6 + 10944*x^10 + 699392*x^15 + 89489408*x^21 + 22907191296*x^28 + 11728213508096*x^36 + ... + 2^(n*(n-1)/2)*(1 + 2^(2*n+1))/3 * x^(n*(n+1)/2) + ...
The cube of g.f. A(x) also equals the infinite product
A(x)^3 = (1 + x)*(1 - 2*x)*(1 + 2^2*x) * (1 + 2*x^2)*(1 - 2^2*x^2)*(1 + 2^3*x^2) * (1 + 2^2*x^3)*(1 - 2^3*x^3)*(1 + 2^4*x^3) * (1 + 2^3*x^4)*(1 - 2^4*x^4)*(1 + 2^5*x^4) * ...
Equivalently,
A(x) = (1 + 3*x - 6*x^2 - 8*x^3)^(1/3) * (1 + 6*x^2 - 24*x^4 - 64*x^6)^(1/3) * (1 + 12*x^3 - 96*x^6 - 512*x^9)^(1/3) * (1 + 24*x^4 - 384*x^8 - 4096*x^12)^(1/3) * (1 + 48*x^5 - 1536*x^10 - 32768*x^15)^(1/3) * ...
where
(1 + 3*x - 6*x^2 - 8*x^3)^(1/3) = 1 + x - 3*x^2 + 3*x^3 - 12*x^4 + 30*x^5 - 102*x^6 + 318*x^7 - 1083*x^8 + 3657*x^9 + ... + A370145(n)*x^n + ...
MATHEMATICA
Round[CoefficientList[Series[QPochhammer[-2, 2*x]^(1/3) * QPochhammer[-1/2, 2*x]^(1/3) * QPochhammer[2*x]^(1/3)*2^(1/3)/3^(2/3), {x, 0, 30}], x]] (* Vaclav Kotesovec, Feb 23 2024 *)
PROG
(PARI) {a(n) = my(A);
A = prod(m=1, n+1, (1 + 2^(m-1)*x^m) * (1 - 2^m*x^m) * (1 + 2^(m+1)*x^m) +x*O(x^n))^(1/3);
polcoeff(H=A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A000547 A138900 A202187 * A057373 A153185 A325450
KEYWORD
sign
AUTHOR
Paul D. Hanna, Feb 22 2024
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 May 7 03:22 EDT 2024. Contains 372300 sequences. (Running on oeis4.)