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.

A303346 Expansion of Product_{n>=1} ((1 + 2*x^n)/(1 - 2*x^n))^(1/2).

Original entry on oeis.org

1, 2, 4, 10, 18, 38, 72, 142, 260, 510, 940, 1814, 3362, 6490, 12112, 23466, 44114, 85766, 162516, 317190, 604806, 1184682, 2271248, 4461514, 8591784, 16916490, 32696708, 64496130, 125037142, 247007142, 480077432, 949510526, 1849375796, 3661330398, 7144215452
Offset: 0

Views

Author

Seiichi Manyama, Apr 22 2018

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 30; CoefficientList[Series[Product[((1 + 2*x^k)/(1 - 2*x^k))^(1/2), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Apr 22 2018 *)
    nmax = 30; CoefficientList[Series[Sqrt[-QPochhammer[-2, x] / (3*QPochhammer[2, x])], {x, 0, nmax}], x] (* Vaclav Kotesovec, Apr 22 2018 *)
  • PARI
    N=66; x='x+O('x^N); Vec(prod(k=1, N, ((1+2*x^k)/(1-2*x^k))^(1/2)))

Formula

a(n) ~ 2^n / sqrt(c*Pi*n), where c = A048651 * A083864 = 1/2 * Product_{j>=1} (2^j-1)/(2^j+1) = 0.06056210400129025123042464659093375290492912341... - Vaclav Kotesovec, Apr 22 2018