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

A160640
Numerator of Laguerre(n, 9).
2
1, -8, 47, -26, -37, 104, 863, -1633, -81479, -3247, 473551, 2070053, 19541099, -5299537, -4828712387, -6662908309, -17244807859, 180304757051, 874291731563, 66578605064561, 3886381511522161, 185817086098037, -369129092519093411, -310895814618726151
OFFSET
0,2
LINKS
MATHEMATICA
Numerator[Table[LaguerreL[n, 9], {n, 0, 50}]] (* G. C. Greubel, May 03 2018 *)
PROG
(PARI) for(n=0, 30, print1(numerator(sum(k=0, n, binomial(n, k)*((-9)^k/k!))), ", ")) \\ G. C. Greubel, May 07 2018
(Magma) [Numerator((&+[Binomial(n, k)*((-9)^k/Factorial(k)): k in [0..n]])): n in [0..30]]; // G. C. Greubel, May 07 2018
CROSSREFS
For denominators see A160641.
Sequence in context: A376842 A378419 A085299 * A230622 A026983 A296331
KEYWORD
sign,frac
AUTHOR
N. J. A. Sloane, Nov 14 2009
STATUS
approved