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.

Showing 1-1 of 1 results.

A356882 E.g.f. satisfies: A(x) * log(A(x)) = x * (exp(x*A(x)) - 1).

Original entry on oeis.org

1, 0, 2, 3, 16, 125, 756, 7567, 85968, 994905, 14373460, 225366251, 3800667960, 72169966453, 1469546796732, 32150706096615, 760806334538656, 19142440567996721, 512272692571487652, 14560087915617858883, 436598686303562722440, 13796641165956117509901
Offset: 0

Views

Author

Seiichi Manyama, Sep 02 2022

Keywords

Crossrefs

Programs

  • PARI
    a(n) = n!*sum(k=0, n\2, (n-2*k+1)^(k-1)*stirling(n-k, k, 2)/(n-k)!);

Formula

a(n) = n! * Sum_{k=0..floor(n/2)} (n-2*k+1)^(k-1) * Stirling2(n-k,k)/(n-k)!.
Showing 1-1 of 1 results.