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.

A368770 a(n) = (n!)^3 * Sum_{k=0..n} k/(k!)^3.

Original entry on oeis.org

0, 1, 10, 273, 17476, 2184505, 471853086, 161845608505, 82864951554568, 60408549683280081, 60408549683280081010, 80403779628445787824321, 138937731197954321360426700, 305246195441905644028857459913, 837595560292589087215184870001286
Offset: 0

Views

Author

Seiichi Manyama, Jan 04 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = n!^3*sum(k=0, n, k/k!^3);

Formula

a(0) = 0; a(n) = n^3 * a(n-1) + n.
a(n) = n * A368776(n-1) for n > 0.