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.

A357348 E.g.f. satisfies A(x) = (exp(x * exp(A(x))) - 1) * exp(3 * A(x)).

Original entry on oeis.org

0, 1, 9, 172, 5181, 214196, 11279542, 722242795, 54482959375, 4732518179422, 465226448603533, 51061919634063284, 6189640391474229790, 821277806639279795053, 118394082630978607655201, 18426248367244130561233924, 3079294928622816257125500821
Offset: 0

Views

Author

Seiichi Manyama, Sep 25 2022

Keywords

Crossrefs

Programs

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

Formula

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