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.

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

Original entry on oeis.org

1, 1, 2, 12, 52, 280, 2160, 16870, 150080, 1557360, 17491600, 215908000, 2923905600, 42734091400, 672515043200, 11347480544400, 204142655516800, 3902009862150400, 78976503077472000, 1687212801048174400, 37941749192547200000
Offset: 0

Views

Author

Seiichi Manyama, Aug 22 2024

Keywords

Crossrefs

Programs

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

Formula

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

A375655 Expansion of e.g.f. exp(x^2 + x * exp(x^2/2)).

Original entry on oeis.org

1, 1, 3, 10, 37, 186, 931, 5608, 36345, 252892, 1961011, 15811896, 139137373, 1286591320, 12584565267, 130564271776, 1410581283121, 16095825151248, 190917669584035, 2366869021623712, 30550349329738581, 408806590130340256, 5688859328729212483
Offset: 0

Views

Author

Seiichi Manyama, Aug 22 2024

Keywords

Crossrefs

Programs

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

Formula

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