cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A004404 Expansion of 1 / (Sum_{n=-oo..oo} x^(n^2))^3.

Original entry on oeis.org

1, -6, 24, -80, 234, -624, 1552, -3648, 8184, -17654, 36816, -74544, 147056, -283440, 535008, -990912, 1803882, -3232224, 5707624, -9943536, 17106960, -29088352, 48922320, -81438528, 134261584, -219336630, 355242288
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Maple
    S:= series(1/JacobiTheta3(0,x)^3,x,101):
    seq(coeff(S,x,j),j=0..100); # Robert Israel, Dec 29 2015
  • Mathematica
    nmax = 30; CoefficientList[Series[Product[((1 + (-x)^k)/(1 - (-x)^k))^3, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 18 2015 *)

Formula

a(n) ~ (-1)^n * 3*exp(Pi*sqrt(3*n)) / (64*n^(3/2)) * (1 - sqrt(3)/(Pi*sqrt(n))). - Vaclav Kotesovec, Aug 18 2015, extended Jan 16 2017