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.

Showing 1-2 of 2 results.

A370709 a(n) = 2^n * [x^n] Product_{k>=1} (1 + 2*x^k)^(1/2).

Original entry on oeis.org

1, 2, 2, 20, 6, 108, 148, 776, -186, 5964, -4, 51032, -89700, 512120, -1259416, 6406032, -19733434, 78363148, -268823572, 1047941688, -3800035916, 14327505832, -52766730600, 199492430192, -746479735524, 2811936761016, -10588174502568, 40092283176560, -151796846803592
Offset: 0

Views

Author

Vaclav Kotesovec, Feb 27 2024

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 30; CoefficientList[Series[Product[(1 + 2*x^k), {k, 1, nmax}]^(1/2), {x, 0, nmax}], x] * 2^Range[0, nmax]
    nmax = 30; CoefficientList[Series[Product[(1 + 2*(2*x)^k), {k, 1, nmax}]^(1/2), {x, 0, nmax}], x]
    nmax = 30; CoefficientList[Series[Sqrt[QPochhammer[-2, x]/3], {x, 0, nmax}], x] * 2^Range[0, nmax]

Formula

G.f.: Product_{k>=1} (1 + 2*(2*x)^k)^(1/2).
a(n) ~ (-1)^(n+1) * c * 4^n / n^(3/2), where c = QPochhammer(-1/2)^(1/2) / (2*sqrt(Pi)) = 0.31039710860287467176143051675437...

A370716 a(n) = 3^(2*n) * [x^n] Product_{k>=1} (1 + 2*x^k)^(1/3).

Original entry on oeis.org

1, 6, 18, 1170, -1890, 133326, 101250, 20498994, -164656314, 3778220862, -28085954094, 771567716970, -10691904063114, 183594050113518, -2711145260068326, 49416883617381354, -789899109743435994, 13176840267952166070, -216403389726994588086, 3681309971143060236810
Offset: 0

Views

Author

Vaclav Kotesovec, Feb 27 2024

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[Product[(1 + 2*x^k), {k, 1, nmax}]^(1/3), {x, 0, nmax}], x] * 3^(2*Range[0, nmax])
    nmax = 20; CoefficientList[Series[Product[(1 + 2*(9*x)^k), {k, 1, nmax}]^(1/3), {x, 0, nmax}], x]
    nmax = 20; CoefficientList[Series[(QPochhammer[-2, x]/3)^(1/3), {x, 0, nmax}], x] * 3^(2*Range[0, nmax])

Formula

G.f.: Product_{k>=1} (1 + 2*(9*x)^k)^(1/3).
a(n) ~ (-1)^(n+1) * c * 18^n / n^(4/3), where c = QPochhammer(-1/2)^(1/3) / (3*Gamma(2/3)) = 0.2623638446186535909018671540030519...
Showing 1-2 of 2 results.