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

A160630
Denominator of Laguerre(n, 5).
2
1, 1, 2, 3, 24, 6, 144, 126, 8064, 2592, 145152, 24948, 19160064, 8895744, 3487131648, 1307674368, 23911759872, 711374856192, 51218989645824, 5529322745856, 556091887583232, 20436376868683776, 1798401164444172288
OFFSET
0,3
LINKS
MATHEMATICA
Denominator[Table[LaguerreL[n, 5], {n, 0, 50}]] (* G. C. Greubel, May 07 2018 *)
PROG
(PARI) for(n=0, 30, print1(denominator(sum(k=0, n, binomial(n, k)*((-5)^k/k!))), ", ")) \\ G. C. Greubel, May 07 2018
(Magma) [Denominator((&+[Binomial(n, k)*((-5)^k/Factorial(k)): k in [0..n]])): n in [0..30]]; // G. C. Greubel, May 07 2018
CROSSREFS
For numerators see A160629.
Sequence in context: A095996 A308943 A061098 * A119619 A170909 A160606
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Nov 14 2009
STATUS
approved