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

A160634
Denominator of Laguerre(n, 7).
2
1, 1, 2, 3, 8, 60, 720, 120, 5760, 25920, 172800, 2851200, 68428800, 49420800, 161740800, 13343616000, 142331904000, 3629463552000, 130660687872000, 31827603456000, 49651061391360000, 74476592087040000, 40456420392960000
OFFSET
0,3
LINKS
MATHEMATICA
Denominator[Table[LaguerreL[n, 7], {n, 0, 50}]] (* G. C. Greubel, May 03 2018 *)
PROG
(PARI) for(n=0, 30, print1(denominator(sum(k=0, n, binomial(n, k)*((-7)^k/k!))), ", ")) \\ G. C. Greubel, May 06 2018
(Magma) [Denominator((&+[Binomial(n, k)*((-7)^k/Factorial(k)): k in [0..n]])): n in [0..30]]; // G. C. Greubel, May 06 2018
CROSSREFS
For numerators see A160633.
Sequence in context: A356902 A042365 A329496 * A072043 A347289 A095203
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Nov 14 2009
STATUS
approved