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.

A288391 Expansion of Product_{k>=1} 1/(1 - x^k)^(sigma_3(k)).

Original entry on oeis.org

1, 1, 10, 38, 156, 534, 2014, 6796, 23312, 76165, 247234, 780343, 2435903, 7453859, 22538336, 67130594, 197666509, 574876417, 1654464954, 4711217687, 13288453688, 37133349758, 102873771662, 282630567325, 770410193747, 2084205092693, 5598070811010
Offset: 0

Views

Author

Seiichi Manyama, Jun 08 2017

Keywords

Crossrefs

Product_{k>=1} 1/(1 - x^k)^sigma_m(k): A006171 (m=0), A061256 (m=1), A275585 (m=2), this sequence (m=3).

Programs

  • Magma
    m:=40; R:=PowerSeriesRing(Rationals(), m); Coefficients(R! ( (&*[1/(1-q^k)^DivisorSigma(3,k): k in [1..m]]) )); // G. C. Greubel, Oct 30 2018
  • Maple
    with(numtheory):
    a:= proc(n) option remember; `if`(n=0, 1, add(add(
          d*sigma[3](d), d=divisors(j))*a(n-j), j=1..n)/n)
        end:
    seq(a(n), n=0..30);  # Alois P. Heinz, Jun 08 2017
  • Mathematica
    nmax = 40; CoefficientList[Series[Product[1/(1-x^k)^DivisorSigma[3, k], {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Mar 23 2018 *)
  • PARI
    m=40; x='x+O('x^m); Vec(prod(k=1, m, 1/(1-x^k)^sigma(k,3))) \\ G. C. Greubel, Oct 30 2018
    

Formula

a(0) = 1, a(n) = (1/n)*Sum_{k=1..n} A027848(k)*a(n-k) for n > 0.
a(n) ~ exp((5*Pi)^(4/5) * Zeta(5)^(1/5) * n^(4/5) / (2^(8/5) * 3^(1/5)) - Zeta'(-3)/2) * Zeta(5)^(121/1200) / ((24*Pi)^(121/1200) * 5^(721/1200) * n^(721/1200)). - Vaclav Kotesovec, Mar 23 2018
G.f.: exp(Sum_{k>=1} sigma_4(k)*x^k/(k*(1 - x^k))). - Ilya Gutkovskiy, Oct 26 2018