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-3 of 3 results.

A262811 Expansion of Product_{k>=1} 1/(1-x^(2*k-1))^(2*k-1).

Original entry on oeis.org

1, 1, 1, 4, 4, 9, 15, 22, 37, 56, 92, 133, 210, 310, 466, 696, 1013, 1495, 2160, 3141, 4495, 6462, 9172, 13024, 18387, 25840, 36213, 50500, 70280, 97302, 134522, 185105, 254245, 347938, 475036, 646676, 878145, 1189468, 1607095, 2166672, 2913794, 3910741
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 03 2015

Keywords

Crossrefs

Programs

  • Maple
    with(numtheory):
    a:= proc(n) option remember; `if`(n=0, 1, add(add(d*
          `if`(d::even, 0, d), d=divisors(j))*a(n-j), j=1..n)/n)
        end:
    seq(a(n), n=0..45);  # Alois P. Heinz, Oct 05 2015
  • Mathematica
    nmax = 60; CoefficientList[Series[Product[1/(1-x^(2*k-1))^(2*k-1), {k, 1, nmax}], {x, 0, nmax}], x]

Formula

a(n) ~ exp(-1/12 + 3*Zeta(3)^(1/3)*n^(2/3)/2) * A * Zeta(3)^(5/36) / (2^(2/3) * sqrt(3*Pi) * n^(23/36)), where Zeta(3) = A002117 and A = A074962 is the Glaisher-Kinkelin constant.
a(0) = 1, a(n) = (1/n)*Sum_{k=1..n} A050999(k)*a(n-k) for n > 0. - Seiichi Manyama, Apr 09 2017

A262736 Expansion of Product_{k>=1} (1 + x^(2*k-1))^(2*k-1).

Original entry on oeis.org

1, 1, 0, 3, 3, 5, 8, 10, 22, 25, 41, 57, 88, 126, 168, 261, 351, 512, 685, 984, 1357, 1865, 2566, 3485, 4838, 6459, 8832, 11831, 16056, 21404, 28660, 38259, 50875, 67613, 89161, 118184, 155321, 204609, 267708, 351125, 458331, 597740, 777590, 1010020, 1310390
Offset: 0

Views

Author

Vaclav Kotesovec, Sep 29 2015

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 60; CoefficientList[Series[Product[(1 + x^(2*k-1))^(2*k-1), {k, 1, nmax}], {x, 0, nmax}], x]

Formula

a(n) ~ exp(3^(4/3) * (Zeta(3))^(1/3) * n^(2/3) / 2^(5/3)) * Zeta(3)^(1/6) / (2^(3/4) * 3^(1/3) * sqrt(Pi) * n^(2/3)).

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

Original entry on oeis.org

1, 2, 2, 6, 10, 16, 30, 46, 78, 124, 196, 306, 470, 724, 1086, 1644, 2438, 3608, 5304, 7734, 11232, 16196, 23270, 33206, 47250, 66846, 94232, 132280, 184966, 257720, 357768, 495090, 682702, 938760, 1286668, 1758708, 2397012, 3258340, 4417570, 5974204, 8059824
Offset: 0

Views

Author

Vaclav Kotesovec, Sep 08 2017

Keywords

Comments

Convolution of A263140 and A035528 (with a(0)=1).

Crossrefs

Programs

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

Formula

a(n) ~ exp(-1/24 - Pi^4/(1344*Zeta(3)) + Pi^2 * n^(1/3) / (8*(7*Zeta(3))^(1/3)) + 3*(7*Zeta(3))^(1/3) * n^(2/3)/4) * A^(1/2) * (7*Zeta(3))^(11/72) / (2^(5/4) * sqrt(3*Pi) * n^(47/72)), where A is the Glaisher-Kinkelin constant A074962.
Showing 1-3 of 3 results.