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.

A383380 Expansion of e.g.f. exp(-2*x) / (1-x)^4.

Original entry on oeis.org

1, 2, 8, 40, 248, 1808, 15136, 142784, 1496960, 17254144, 216740864, 2945973248, 43065951232, 673626675200, 11224114860032, 198447384666112, 3710328985124864, 73136238041563136, 1515739708283944960, 32947698735175172096, 749499782353468522496, 17806903161183314378752
Offset: 0

Views

Author

Seiichi Manyama, Apr 24 2025

Keywords

Crossrefs

Programs

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

Formula

E.g.f.: B(x)^2, where B(x) is the e.g.f. of A000255.
a(n) = n! * Sum_{k=0..n} (-2)^(n-k) * binomial(k+3,3)/(n-k)!.
a(0) = 1, a(1) = 2; a(n) = (n+1)*a(n-1) + 2*(n-1)*a(n-2).
a(n) ~ sqrt(Pi) * n^(n + 7/2) / (3*sqrt(2)*exp(n+2)). - Vaclav Kotesovec, Apr 25 2025