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!)
A006195 Reversion of Jacobi theta_3. 3
1, -2, 8, -40, 222, -1316, 8160, -52272, 343220, -2297682, 15623760, -107611608, 749209832, -5264005060, 37277153920, -265788870480, 1906489923022, -13747860118724, 99606357848920, -724732875917064, 5293303253527704, -38795196044205056 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
J.-G. Penaud, Arbres et Animaux, Ph.D. Dissertation, Université Bordeaux I, 1990, cover page and p. 76. (Annotated scanned copy)
FORMULA
REVERT(A000122).
From Vaclav Kotesovec, Sep 27 2023: (Start)
G.f. A(x) satisfies A(x) = Product_{k>=1} (1 + (-x)^k*A(x)^k)/(1 - (-x)^k*A(x)^k).
a(n) ~ (-1)^n * c * d^n / n^(3/2), where d = 7.86298339570590526151934790995382716105758424871057843176888470144337... and c = 0.617020565581840591336246430220953133238702598666548444780767269...
(End)
MAPLE
# Using function CompInv from A357588.
CompInv(22, n -> if n = 1 then 1 elif issqr(n-1) then 2 else 0 fi); # Peter Luschny, Oct 05 2022
MATHEMATICA
nmax = 30; A[_] = 0; Do[A[x_] = Product[(1 + x^k*A[x]^k)/(1 - x^k*A[x]^k), {k, 1, nmax}] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] * (-1)^Range[0, nmax] (* Vaclav Kotesovec, Sep 27 2023 *)
(* Calculation of constant d: *) 1/r /. FindRoot[{QPochhammer[-1, r*s] == 2*s*QPochhammer[r*s], (2* QPochhammer[r*s]*(-Log[r*s] + Log[1 - r*s] + QPolyGamma[0, 1, r*s])) / Log[r*s] + r*(Derivative[0, 1][QPochhammer][-1, r*s] - 2*s*Derivative[0, 1][QPochhammer][r*s, r*s]) == 0}, {r, 1/8}, {s, 2}, WorkingPrecision -> 120] (* Vaclav Kotesovec, Sep 27 2023 *)
PROG
(PARI) N=66; x='x+O('x^N); /* that many terms */
Vec(serreverse(x*sum(n=-N, N, x^(n^2)))) /* show terms */ /* Joerg Arndt, May 25 2011 */
CROSSREFS
Sequence in context: A234938 A143388 A027282 * A214763 A219587 A092807
KEYWORD
sign
AUTHOR
EXTENSIONS
Signs corrected by N. J. A. Sloane, Dec 24 2001
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 6 18:59 EDT 2024. Contains 372297 sequences. (Running on oeis4.)