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.

A292358 E.g.f.: Product_{k>=1} 1/(1 + x^k/k).

Original entry on oeis.org

1, -1, 1, -5, 20, -104, 584, -4304, 35720, -329160, 3239112, -36135912, 438454752, -5743527360, 80351263680, -1218698312064, 19599583392384, -334335747652224, 6019295318075520, -114911886106373760, 2305234779285164544, -48596575400453366784
Offset: 0

Views

Author

Seiichi Manyama, Sep 14 2017

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[Product[1/(1 + x^k/k), {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Sep 15 2017 *)
  • PARI
    {a(n) = n!*polcoeff(1/prod(k=1, n, 1+x^k/k+x*O(x^n)), n)}

Formula

a(n) ~ (-1)^n * n!. - Vaclav Kotesovec, Sep 15 2017
E.g.f.: exp(Sum_{k>=1} Sum_{j>=1} (-1)^k*x^(j*k)/(k*j^k)). - Ilya Gutkovskiy, May 27 2018