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.

A369756 Expansion of e.g.f. exp( (1 - (1+x)^5)/5 ).

Original entry on oeis.org

1, -1, -3, -1, 49, 255, -275, -13105, -83775, 170495, 8290045, 69257055, -111005135, -9684015745, -109196883795, -31470300625, 17728458119425, 276531029694975, 904537471692925, -44728487203650625, -1000823562359108175, -7110596979389965825
Offset: 0

Views

Author

Seiichi Manyama, Jan 31 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp((1-(1+x)^5)/5)))

Formula

a(0) = 1; a(n) = -(n-1)! * Sum_{k=1..min(5,n)} binomial(4,k-1) * a(n-k)/(n-k)!.
a(n) = Sum_{k=0..n} 5^k * Stirling1(n,k) * Bell_k(-1/5), where Bell_n(x) is n-th Bell polynomial.