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.

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

Original entry on oeis.org

1, 1, 17, 179, 6083, 298583, 20015947, 2214261035, 332014246747, 64923646898023, 17220997162396851, 5898373172881341811, 2513698997312409032785, 1335813901379210302030497, 875400777321767437156156305, 692119702624591542667897216641, 653524900495231808524498551469617
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 04 2021

Keywords

Crossrefs

Programs

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