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.

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

Original entry on oeis.org

1, 1, 33, 519, 43111, 5068111, 840782023, 291086377719, 139698959369111, 90748115988081551, 90809507057803456103, 124011515918275951611959, 217278911997171247450862041, 509237348184229328050319432621, 1567286639251140454692258569881053
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 04 2021

Keywords

Crossrefs

Programs

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