A095000 E.g.f.: exp(x)/(1-x)^4.
1, 5, 29, 193, 1457, 12341, 116125, 1203329, 13627073, 167525317, 2222710781, 31665408545, 482196718129, 7817359305653, 134443910166077, 2444991262876321, 46883166605035265, 945426638499719429, 20002372214708227933, 443036881445294292737, 10252840082607606694961
Offset: 0
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
- Eric Weisstein's World of Mathematics, Poisson-Charlier polynomial
Programs
-
Maple
a := n -> hypergeom([4, -n], [], -1); seq(round(evalf(a(n), 100)), n=0..18); # Peter Luschny, Sep 20 2014
-
Mathematica
Table[n!*SeriesCoefficient[E^(x)/(1-x)^4,{x,0,n}],{n,0,20}] (* Vaclav Kotesovec, Oct 14 2012 *)
-
PARI
x='x+O('x^66); Vec(serlaplace(exp(x)/(1-x)^4)) \\ Joerg Arndt, May 11 2013
Formula
a(n) = Sum_{k=0..n} A094816(n, k)*4^k.
a(n) = Sum_{k=0..n} binomial(n, k)*(k+3)!/6.
a(n) ~ n!*n^3*e/6. - Vaclav Kotesovec, Oct 14 2012
a(n) = hypergeom([4, -n], [], -1). - Peter Luschny, Sep 20 2014
First-order recurrence: P(n-1)*a(n) = n*P(n)*a(n-1) - 1 with a(0) = 1, where P(n) = n^3 + 3*n^2 + 5*n + 2 = A001565(n). - Peter Bala, Jul 26 2021
D-finite with recurrence a(n) +(-n-4)*a(n-1) +(n-1)*a(n-2)=0. - R. J. Mathar, Aug 01 2022
a(n) = A001341(n)/6. - Alois P. Heinz, Jan 17 2025
Comments