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

A332692
a(n) = n! * Laguerre(n, 2*n).
5
1, -1, 2, 6, -232, 4120, -61488, 740432, -3220096, -224705664, 11713068800, -397487915264, 10466018491392, -176186211195904, -2178925657151488, 399827849856768000, -24748326426744881152, 1112888620945558700032, -36293785214959525625856, 408738923015995616067584
OFFSET
0,3
LINKS
MATHEMATICA
Table[n! * LaguerreL[n, 2*n], {n, 0, 25}]
Flatten[{1, Table[n!*Sum[Binomial[n, k] * (-1)^k * 2^k * n^k / k!, {k, 0, n}], {n, 1, 25}]}]
Table[n! * Hypergeometric1F1[-n, 1, 2*n], {n, 0, 25}]
PROG
(PARI) a(n) = n!*pollaguerre(n, 0, 2*n); \\ Michel Marcus, Feb 05 2021
CROSSREFS
KEYWORD
sign
AUTHOR
Vaclav Kotesovec, Feb 20 2020
STATUS
approved