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.

A300519 Convolution of n! and n^n.

Original entry on oeis.org

1, 2, 7, 39, 321, 3603, 51391, 884873, 17770445, 406673247, 10431884283, 296262164637, 9224841015745, 312441152401067, 11434829066996087, 449675059390576257, 18908960744072894325, 846638474386244188311, 40213487658138717885907, 2019543479160709325145893
Offset: 0

Views

Author

Vaclav Kotesovec, Mar 08 2018

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[If[k == 0, 1, k^k] * (n-k)!, {k, 0, n}], {n, 0, 20}]

Formula

a(n) = Sum_{k=0..n} k^k * (n-k)!.
a(n) ~ n^n * (1 + exp(-1)/n).