login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A346185
a(0) = 1; a(n) = Sum_{k=0..n-1} binomial(n-1,k)^3 * a(k).
1
1, 1, 2, 11, 93, 1294, 26045, 714391, 26109426, 1224739755, 71807248783, 5173027197636, 450173748220033, 46617339568635115, 5677430539873463470, 804907754967314483801, 131598260940217897338131, 24609634809861999705338820, 5226508081059269450476666513
OFFSET
0,3
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, k]^3 a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 18}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 09 2021
STATUS
approved