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.

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

Original entry on oeis.org

1, 0, 4, 8, 72, 416, 3520, 31104, 316288, 3525632, 43117056, 572195840, 8191304704, 125761056768, 2060841582592, 35894401335296, 662066514984960, 12890305925218304, 264155723747688448, 5682905054074109952, 128051031032232411136, 3015653024970577018880
Offset: 0

Views

Author

Seiichi Manyama, Apr 23 2025

Keywords

Crossrefs

Column k=4 of A295181.

Programs

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

Formula

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