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.

A331335 L.g.f.: log(Sum_{k>=0} k! * x^k / Product_{j=1..k} (1 - j*x)).

Original entry on oeis.org

1, 5, 31, 241, 2231, 23825, 287687, 3872961, 57514423, 934197425, 16480953127, 313919262625, 6422468800151, 140496324183185, 3273117681693191, 80916019512168321, 2115854823935820151, 58351931794643315825, 1692782510862560536807, 51533053881743794186081
Offset: 1

Views

Author

Ilya Gutkovskiy, Jan 14 2020

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[Log[Sum[k! x^k/Product[1 - j x, {j, 1, k}], {k, 0, nmax}]], {x, 0, nmax}], x] Range[0, nmax] // Rest

Formula

exp(Sum_{n>=1} a(n) * x^n / n) = g.f. of A000670.
a(n) = n * A000670(n) - Sum_{k=1..n-1} A000670(k) * a(n-k).
a(n) ~ n * n! / (2 * (log(2))^(n+1)). - Vaclav Kotesovec, Jan 28 2020