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.

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

Original entry on oeis.org

1, -1, 4, -63, 2288, -138525, 12381084, -1528482823, 249005711296, -51739455340953, 13353206066063900, -4190486732316600771, 1571373340568392914288, -693899460077821703051125, 356404409990391961980227068, -210670220153918100996704166975
Offset: 0

Views

Author

Seiichi Manyama, Feb 19 2022

Keywords

Crossrefs

Main diagonal of A351776.

Programs

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

Formula

a(n) = n! * [x^n] 1/(1 + n*x*exp(x)).