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.

Showing 1-1 of 1 results.

A367308 a(0) = 1; thereafter a(n) = n*Sum_{k=0..n-1} binomial(n,k) * a(k).

Original entry on oeis.org

1, 1, 6, 66, 1220, 34130, 1346982, 71335236, 4883183496, 419708936862, 44256845856410, 5618131203742376, 845200046197677612, 148704124317985161666, 30252055409619038022510, 7046807010054413604547740, 1863423940527969873383134736, 555177557057715635856129878246
Offset: 0

Views

Author

Vaclav Kotesovec, Nov 13 2023

Keywords

Crossrefs

Cf. A365863.

Programs

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

Formula

a(n) ~ c * n^(2*n + 3/2) / exp(2*n), where c = 6.702694897473369225159542571434998226159280485652114977020519335049605...
Showing 1-1 of 1 results.