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

A160602
Denominator of Laguerre(n, -9).
3
1, 1, 2, 1, 8, 20, 16, 280, 4480, 64, 44800, 49280, 1971200, 1830400, 14350336, 896896000, 74547200, 243955712000, 6823936000, 109062553600, 52973240320000, 51913775513600, 3359126650880000, 93815608606720000, 2101469632790528000
OFFSET
0,3
LINKS
MATHEMATICA
Denominator[Table[LaguerreL[n, -9], {n, 0, 50}]] (* G. C. Greubel, May 13 2018 *)
PROG
(PARI) for(n=0, 30, print1(denominator(sum(k=0, n, binomial(n, k)*(9^k/k!))), ", ")) \\ G. C. Greubel, May 13 2018
(PARI) a(n) = denominator(pollaguerre(n, 0, -9)); \\ Michel Marcus, Feb 05 2021
(Magma) [Denominator((&+[Binomial(n, k)*(9^k/Factorial(k)): k in [0..n]])): n in [0..30]]; // G. C. Greubel, May 13 2018
CROSSREFS
For numerators see A160601.
Cf. A289215.
Sequence in context: A168244 A009828 A084222 * A160626 A052312 A110742
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Nov 14 2009
STATUS
approved