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.

A375588 Expansion of e.g.f. 1 / (1 + x - x * exp(x^2)).

Original entry on oeis.org

1, 0, 0, 6, 0, 60, 720, 840, 40320, 378000, 2116800, 60207840, 598752000, 7792424640, 181863601920, 2288689603200, 45855781171200, 1016682053587200, 17113328962329600, 422970486434496000, 9765438564930048000, 213305542403822668800, 5916931500898517299200
Offset: 0

Views

Author

Seiichi Manyama, Aug 19 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+x-x*exp(x^2))))
    
  • PARI
    a(n) = n!*sum(k=0, n\2, (n-2*k)!*stirling(k, n-2*k, 2)/k!);

Formula

a(n) = n! * Sum_{k=0..floor(n/2)} (n-2*k)! * Stirling2(k,n-2*k)/k!.

A376347 Expansion of e.g.f. (1/x) * Series_Reversion( x*(1 - x*(exp(x^3) - 1)) ).

Original entry on oeis.org

1, 0, 0, 0, 24, 0, 0, 2520, 201600, 0, 604800, 259459200, 16765056000, 259459200, 406832025600, 100037089152000, 5963169474662400, 844757641728000, 560207699251200000, 107716905363549081600, 6157546579533533184000, 3525275009847951360000, 1582967914636148232192000, 264668100119565849907200000
Offset: 0

Views

Author

Seiichi Manyama, Sep 21 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(serreverse(x*(1-x*(exp(x^3)-1)))/x))
    
  • PARI
    a(n) = sum(k=0, n\3, (2*n-3*k)!*stirling(k, n-3*k, 2)/k!)/(n+1);

Formula

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