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-2 of 2 results.

A371119 E.g.f. satisfies A(x) = 1 + x*A(x)*(exp(x*A(x)) - 1).

Original entry on oeis.org

1, 0, 2, 3, 52, 305, 4866, 57337, 1048776, 18547713, 407900710, 9436057961, 248501026236, 7021087254337, 217488458525898, 7223642070331065, 258233053457437456, 9841074705853124609, 399304906991091898830, 17163110041947804495817, 779646387683354742170820
Offset: 0

Views

Author

Seiichi Manyama, Mar 11 2024

Keywords

Crossrefs

Programs

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

Formula

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

A371122 E.g.f. satisfies A(x) = 1 - x*A(x)^3*log(1 - x*A(x)).

Original entry on oeis.org

1, 0, 2, 3, 104, 570, 19284, 220500, 7975008, 148889664, 5911249680, 157016471040, 6913129099392, 239681708117280, 11734594390915200, 501510627153244800, 27265653826293749760, 1380895751066249779200, 83060557136719693406208
Offset: 0

Views

Author

Seiichi Manyama, Mar 11 2024

Keywords

Crossrefs

Programs

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

Formula

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