cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A368585 a(n) = n! * Sum_{k=0..n} (-1)^(n-k) * binomial(k+2,3) / k!.

Original entry on oeis.org

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

Views

Author

Seiichi Manyama, Dec 31 2023

Keywords

Crossrefs

Programs

  • 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))))

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