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.

A375587 Expansion of e.g.f. 1 / (1 + x - x * exp(x^3/6)).

Original entry on oeis.org

1, 0, 0, 0, 4, 0, 0, 70, 1120, 0, 2800, 184800, 2217600, 200200, 39239200, 1513512000, 16166550400, 11435424000, 1029188160000, 31290941281600, 317363510464000, 821292151680000, 52198475641312000, 1387554839326656000, 14092570281613824000, 92349968764253200000
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^3/6))))
    
  • PARI
    a(n) = n!*sum(k=0, n\3, (n-3*k)!*stirling(k, n-3*k, 2)/(6^k*k!));

Formula

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

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

Original entry on oeis.org

1, 0, 0, 3, 0, 15, 90, 105, 2520, 8505, 66150, 634095, 3118500, 40675635, 285675390, 2896618725, 31556725200, 281774718225, 3691224687150, 37783760189175, 483465043561500, 6108282465360075, 76126660317858150, 1102221773079151725, 14598579860502838200
Offset: 0

Views

Author

Seiichi Manyama, Aug 19 2024

Keywords

Crossrefs

Programs

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

Formula

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