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

A371139 E.g.f. satisfies A(x) = 1 + x^2*A(x)^2*(exp(x*A(x)) - 1).

Original entry on oeis.org

1, 0, 0, 6, 12, 20, 2190, 17682, 94136, 4762872, 83210490, 920248670, 34266719652, 948535937076, 17568958623398, 607198057666410, 22018456385103600, 595499717140604912, 21682086461493768306, 926586132659265073590, 33197900968981072951580
Offset: 0

Views

Author

Seiichi Manyama, Mar 12 2024

Keywords

Crossrefs

Programs

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

Formula

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