OFFSET
0,2
COMMENTS
The n-th term of the n-fold exponential convolution of A000522 with themselves.
LINKS
N. J. A. Sloane, Transforms
Eric Weisstein's World of Mathematics, Laguerre Polynomial
Wikipedia, Laguerre polynomials
FORMULA
a(n) ~ phi^(3*n + 1/2) * n^n / (5^(1/4) * exp(n/phi)), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio. - Vaclav Kotesovec, Nov 16 2017
a(n) = (-1)^n*n!*Laguerre(n,-2*n,n). - Ilya Gutkovskiy, May 24 2018
E.g.f.: Series_Reversion(x - Sum_{n>=2} n * (n-1)^(n-2) * x^n / n!) (with offset 1). - Mikhail Kurkov, May 11 2026
MATHEMATICA
Table[n! SeriesCoefficient[Exp[n x]/(1 - x)^n, {x, 0, n}], {n, 0, 18}]
PROG
(PARI) a(n) = (!(n%2)<<1 - 1) * n! * pollaguerre(n, -2*n, n) \\ Mikhail Kurkov, May 11 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 16 2017
STATUS
approved
