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”).

A293864
a(0) = a(1) = 1; a(n) = n! * [x^n] (Sum_{k=0..n-1} a(k)*x^k/k!)^n.
3
1, 1, 2, 42, 2472, 295320, 61369920, 20250513360, 9970976453760, 6994020967113600, 6738118625057702400, 8654627604114610272000, 14457770976132703296000000, 30761772133454776218220416000, 81885712959925376996901780172800, 268520193454950330194198952198144000
OFFSET
0,3
LINKS
FORMULA
From Vaclav Kotesovec, Oct 18 2017: (Start)
a(n) ~ c * n!^3/sqrt(n), where c = 0.500612869985729164508780668394780439268735...
a(n) ~ c * n^(3*n+1)/exp(3*n), where c = 7.884457436083884678947729926892032034...
(End)
EXAMPLE
E.g.f. A(x) = 1 + x + 2*x^2/2! + 42*x^3/3! + 2472*x^4/4! + 295320*x^5/5! + 61369920*x^6/6! + ...
MATHEMATICA
a[n_] := a[n] = n! SeriesCoefficient[Sum[a[k] x^k/k!, {k, 0, n - 1}]^n, {x, 0, n}]; a[0] = 1; a[1] = 1; Table[a[n], {n, 0, 15}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 18 2017
STATUS
approved