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.

A337057 a(n) = exp(-n) * Sum_{k>=0} (k - n)^n * n^k / k!.

Original entry on oeis.org

1, 0, 2, 3, 52, 255, 4146, 38766, 688584, 9685017, 195875110, 3655101703, 84872077500, 1955205893680, 51896551499898, 1412668946049315, 42475968202854160, 1328074354724554471, 44778480417250291566, 1577210136570598631318
Offset: 0

Views

Author

Ilya Gutkovskiy, Aug 13 2020

Keywords

Crossrefs

Programs

  • Mathematica
    Table[n! SeriesCoefficient[Exp[n (Exp[x] - 1 - x)], {x, 0, n}], {n, 0, 19}]
    Unprotect[Power]; 0^0 = 1; Table[Sum[Binomial[n, k] (-n)^(n - k) BellB[k, n], {k, 0, n}], {n, 0, 19}]

Formula

a(n) = n! * [x^n] exp(n*(exp(x) - 1 - x)).
a(n) = Sum_{k=0..n} binomial(n,k) * (-n)^(n-k) * BellPolynomial_k(n).