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.

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

Original entry on oeis.org

1, 1, 5, 23, 155, 1355, 14371, 183911, 2781283, 48726355, 976903875, 22183097191, 565060532965, 16016170519017, 501714014484813, 17265124180702953, 649178961366102597, 26544344366333824055, 1175291769917975444817, 56133021061270139242637, 2881893164859601701738005
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 04 2021

Keywords

Crossrefs

Programs

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