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.

A368295 Expansion of e.g.f. exp(-x) / (1 - x*exp(3*x)).

Original entry on oeis.org

1, 0, 7, 47, 549, 7859, 134743, 2694537, 61595593, 1584039383, 45262146411, 1422647401493, 48780718512397, 1812012517295811, 72486789793754911, 3106846273709042609, 142039582571511632529, 6899664100487740573871, 354870658975988082859219
Offset: 0

Views

Author

Seiichi Manyama, Dec 20 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = n!*sum(k=0, n, (3*(n-k)-1)^k/k!);

Formula

a(n) = n! * Sum_{k=0..n} (3*(n-k)-1)^k / k!.