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.

A292279 Expansion of 1/Product_{k>=1} (1 + k!*x^k).

Original entry on oeis.org

1, -1, -1, -5, -15, -93, -551, -4129, -33607, -312929, -3179343, -35602881, -432201743, -5678740945, -80142780751, -1210609725905, -19481112885231, -332836223507793, -6016678424942063, -114746996449871761, -2302527084416470255, -48495552665272893329
Offset: 0

Views

Author

Seiichi Manyama, Sep 13 2017

Keywords

Crossrefs

Programs

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

Formula

Convolution inverse of A265950.
a(n) ~ -n! * (1 - 1/n - 1/n^2 - 6/n^3 - 31/n^4 - 219/n^5 - 1932/n^6 - 19945/n^7 - 234837/n^8 - 3104108/n^9 - 45495817/n^10). - Vaclav Kotesovec, Sep 14 2017
G.f.: exp(Sum_{k>=1} Sum_{j>=1} (-1)^k*(j!)^k*x^(j*k)/k). - Ilya Gutkovskiy, Jun 18 2018