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!)
A371114 a(n) is n! times the coefficient of x in the associated Laguerre polynomial Laguerre(n,x,1). 0
0, 1, 1, -1, -16, -111, -691, -4145, -23080, -96159, 195137, 13914911, 284958904, 4842967921, 77613841629, 1219132694767, 19006810258064, 294117291312577, 4469910552829473, 64942899785556031, 841752172982238304, 7465153745073705041, -61832090598783228403, -6408471053640082778097 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = n!*Sum_{k=0..n-1} A009940(k)/(k!*(n-k)).
a(n) = (4*n - 7)*a(n-1) - (6*n^2 - 25*n + 27)*a(n-2) + (n-2)*(4*n^2 - 21*n + 28)*a(n-3) - (n-3)^3*(n-2)*a(n-4). - Vaclav Kotesovec, Mar 12 2024
MATHEMATICA
a[n_]:=n! D[LaguerreL[n, x, 1], x]/.{x->0}; Array[a, 25, 0]
Table[n! Sum[LaguerreL[k, 1]/(n-k), {k, 0, n-1}], {n, 0, 25}]
RecurrenceTable[{(-3 + n)^3*(-2 + n)*a[n-4] - (-2 + n)*(28 - 21*n + 4*n^2)*a[n-3] + (27 - 25*n + 6*n^2)*a[n-2] + (7 - 4*n)*a[n-1] + a[n] == 0, a[0] == 0, a[1] == 1, a[2] == 1, a[3] == -1}, a, {n, 0, 20}] (* Vaclav Kotesovec, Mar 12 2024 *)
PROG
(PARI) a(n) = n!*sum(k=0, n-1, pollaguerre(k, 0, 1)/(n-k)); \\ Michel Marcus, Mar 12 2024
CROSSREFS
Cf. A009940.
Sequence in context: A234250 A240786 A213754 * A279425 A144449 A035016
KEYWORD
sign
AUTHOR
Rui Xian Siew, Mar 10 2024
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 September 4 23:23 EDT 2024. Contains 375685 sequences. (Running on oeis4.)