The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A062191 Row sums of signed triangle A062138 (generalized a=5 Laguerre). 3
1, 5, 29, 191, 1405, 11389, 100585, 958271, 9758009, 105258005, 1191424981, 13996923775, 168226145269, 2023185762701, 23353840650785, 232509328597439, 1131674305674865, -36251185098769499, -1837042409174409971 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: exp(-x/(1-x))/(1-x)^5.
a(n) = Sum_{m=0..n} (-1)^m*n!*binomial(n+5, n-m)/m!.
MATHEMATICA
Table[n!*LaguerreL[n, 5, 1], {n, 0, 20}] (* Vaclav Kotesovec, Feb 25 2014 *)
PROG
(PARI) { f=1; for (n=0, 100, if (n>1, f*=n); a=f*binomial(n+5, n); g=1; a+=sum(m=1, n, ((-1)^m)*f*binomial(n+5, n-m)/g*=m); write("b062191.txt", n, " ", a) ) } \\ Harry J. Smith, Aug 02 2009
(PARI) my(x = 'x + O('x^30)); Vec(serlaplace(exp(-x/(1-x))/(1-x)^5)) \\ G. C. Greubel, May 11 2018
(PARI) a(n) = vecsum(Vec(n!*pollaguerre(n, 5))); \\ Michel Marcus, Feb 06 2021
(Magma) m:=25; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Exp(-x/(1-x))/(1-x)^5)); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, May 11 2018
CROSSREFS
Cf. A062138.
Sequence in context: A078945 A113713 A142980 * A367240 A171267 A258314
KEYWORD
sign,easy
AUTHOR
Wolfdieter Lang, Jun 19 2001
EXTENSIONS
Typo in first formula corrected by Vaclav Kotesovec, Feb 25 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 16 10:52 EDT 2024. Contains 372552 sequences. (Running on oeis4.)