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

A368585
a(n) = n! * Sum_{k=0..n} (-1)^(n-k) * binomial(k+2,3) / k!.
4
0, 1, 2, 4, 4, 15, -34, 322, -2456, 22269, -222470, 2447456, -29369108, 381798859, -5345183466, 80177752670, -1282844041904, 21808348713337, -392550276838926, 7458455259940924, -149169105198816940, 3132551209175157511, -68916126601853463218
OFFSET
0,3
FORMULA
a(0) = 0; a(n) = -n*a(n-1) + binomial(n+2,3).
E.g.f.: x * (1+x+x^2/6) * exp(x) / (1+x).
PROG
(PARI) my(N=30, x='x+O('x^N)); concat(0, Vec(serlaplace(x*sum(k=0, 2, binomial(2, k)*x^k/(k+1)!)*exp(x)/(1+x))))
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Seiichi Manyama, Dec 31 2023
STATUS
approved