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

A160555
Denominator of Laguerre(n, -12).
2
1, 1, 1, 1, 1, 5, 5, 35, 35, 35, 175, 1925, 1925, 25025, 13475, 79625, 875875, 14889875, 1353625, 282907625, 1414538125, 9901766875, 108919435625, 2505147019375, 2505147019375, 4817590421875, 6728700671875, 62628675484375
OFFSET
0,6
LINKS
MATHEMATICA
Table[LaguerreL[n, -12] // Denominator, {n, 0, 27}] (* Jean-François Alcover, Jul 01 2017 *)
PROG
(PARI) for(n=0, 30, print1(denominator(sum(k=0, n, binomial(n, k)*(12^k/k!))), ", ")) \\ G. C. Greubel, May 14 2018
(Magma) [Denominator((&+[Binomial(n, k)*(12^k/Factorial(k)): k in [0..n]])): n in [0..30]]; // G. C. Greubel, May 14 2018
CROSSREFS
For numerators see A160554.
Sequence in context: A160672 A355952 A232982 * A067047 A374508 A375993
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Nov 14 2009
STATUS
approved