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.

A371326 E.g.f. satisfies A(x) = log(1 + x/(1 - A(x)))/(1 - A(x))^2.

Original entry on oeis.org

0, 1, 5, 71, 1606, 50334, 2017840, 98597204, 5684225640, 377709287232, 28423701233784, 2389343434217376, 221907620769333648, 22565504728129558272, 2493614778861026071584, 297548320679718887153088, 38128996565367754662297600, 5222327925855459163424791680
Offset: 0

Views

Author

Seiichi Manyama, Mar 19 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = Sum_{k=1..n} (n+3*k-2)!/(n+2*k-1)! * Stirling1(n,k).
E.g.f.: Series_Reversion( (1 - x) * (exp(x * (1 - x)^2) - 1) ). - Seiichi Manyama, Sep 09 2024