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.

A342197 a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k)^3 * a(k-1).

Original entry on oeis.org

1, 1, 9, 63, 919, 18919, 505639, 18602319, 877402487, 51212704151, 3688010412503, 321523601578079, 33283248550719793, 4050897039400696253, 574469890816237292037, 93943844587040615104177, 17565329004174205621822169, 3730161837629377369026433019
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 04 2021

Keywords

Crossrefs

Programs

  • Mathematica
    a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k]^3 a[k - 1], {k, 1, n}]; Table[a[n], {n, 0, 17}]