OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..439
FORMULA
E.g.f.: (1/(1-x)^5)*exp(x/(1-x))*LaguerreL(4,-x/(1-x)).
From Vaclav Kotesovec, Nov 13 2017: (Start)
Recurrence: n*a(n) = 2*n*(n+4)*a(n-1) - (n-1)*(n+3)*(n+4)*a(n-2).
a(n) ~ exp(2*sqrt(n)-n-1/2) * n^(n + 17/4) / (3*2^(7/2)) * (1 + 31/(48*sqrt(n))).
(End)
MATHEMATICA
CoefficientList[ Series[(1/(1 - x)^5)*Exp[x/(1 - x)]LaguerreL[4, -x/(1 - x)], {x, 0, 16}], x]*Range[0, 16]! (* Robert G. Wilson v, Oct 03 2006 *)
PROG
(PARI)
LaguerreL(n, v='x) = {
my(x='x+O('x^(n+1)), t='t);
subst(polcoeff(exp(-x*t/(1-x))/(1-x), n), 't, v);
};
N=17; x='x+O('x^N); Vec(serlaplace((1/(1-x)^5)*exp(x/(1-x))*LaguerreL(4, -x/(1-x)))) \\ Gheorghe Coserea, Oct 26 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Karol A. Penson, Oct 02 2006
EXTENSIONS
a(0)=1 prepended by Gheorghe Coserea, Oct 26 2017
STATUS
approved