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

A343849
a(n) = Sum_{k = 0..n} n! * LaguerreL(n, -k).
3
1, 3, 23, 294, 5194, 116620, 3175717, 101696700, 3745365444, 155975005998, 7247927859875, 371803988506742, 20870023274690966, 1272424816703533792, 83736949788656865729, 5916106654032037435800, 446636583718649775483144, 35882981062654529341219962, 3056767877633271802374850239
OFFSET
0,2
FORMULA
a(n) = (-1)^n * Sum_{k=0..n} KummerU(-n, 1, -k).
a(n) = n! * Sum_{m=0..n} Sum_{j=0..n} binomial(n, j) * m^j / j!.
a(n) ~ exp(n/phi - n) * phi^(2*n+1) * n^n / (5^(1/4) * (1 - exp(-1/phi))), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio. - Vaclav Kotesovec, May 09 2021
MATHEMATICA
a[n_] := Sum[n! LaguerreL[n, -k], {k, 0, n}];
Table[a[n], {n, 0, 18}]
PROG
(PARI)
a(n) = n!*sum(m=0, n, sum(j=0, n, binomial(n, j) * m^j / j!))
for(n=0, 18, print(a(n)))
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, May 08 2021
STATUS
approved