login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A317279 a(n) = Sum_{k=0..n} (-1)^(n-k)*binomial(n-1,k-1)*n^k*n!/k!. 4
1, 1, 0, -9, -32, 225, 3456, 2695, -433152, -4495743, 47872000, 1768142871, 6703534080, -597265448351, -11959736205312, 126058380654375, 9454322092343296, 84694164336894465, -5776865438988238848, -192541299662555831753, 1511905067561779200000, 243338391925401706938081, 3972949090873574466519040 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(n) is the n-th term of the inverse Lah transform of the powers of n.
LINKS
N. J. A. Sloane, Transforms
FORMULA
a(n) = n! * [x^n] exp(n*x/(1 + x)).
a(n) = n! * [x^n] Product_{k>=1} exp(-n*(-x)^k).
a(n) = (-1)^(n+1) * n * n! * Hypergeometric1F1([1-n], [2], n) with a(0) = 1.
a(n) = (-1)^(n+1) * n! * LaguerreL(n-1, 1, n) with a(0) = 1. - G. C. Greubel, Mar 09 2021
MAPLE
A317279:= n -> `if`(n=0, 1, (-1)^(n+1)*n!*simplify(LaguerreL(n-1, 1, n), 'LaguerreL'));
seq(A317279(n), n = 0..30); # G. C. Greubel, Mar 09 2021
MATHEMATICA
Join[{1}, Table[Sum[(-1)^(n-k) Binomial[n-1, k-1] n^k n!/k!, {k, n}], {n, 22}]]
Table[n! SeriesCoefficient[Exp[n x/(1 + x)], {x, 0, n}], {n, 0, 22}]
Table[n! SeriesCoefficient[Product[Exp[-n (-x)^k], {k, n}], {x, 0, n}], {n, 0, 22}]
Join[{1}, Table[(-1)^(n+1) n n! Hypergeometric1F1[1-n, 2, n], {n, 22}]]
PROG
(Sage) [1]+[(-1)^(n+1)*factorial(n)*gen_laguerre(n-1, 1, n) for n in (1..30)] # G. C. Greubel, Mar 09 2021
(Magma)
l:= func< n, a, b | Evaluate(LaguerrePolynomial(n, a), b) >;
[1]cat[(-1)^(n+1)*Factorial(n)*l(n-1, 1, n): n in [1..30]]; // G. C. Greubel, Mar 09 2021
(PARI) a(n) = if (n==0, 1, (-1)^(n+1)*n!*pollaguerre(n-1, 1, n)); \\ Michel Marcus, Mar 10 2021
CROSSREFS
Sequence in context: A297298 A229444 A300773 * A196016 A183426 A061913
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jul 25 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)