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.

A371044 E.g.f. satisfies A(x) = 1 + x^3*exp(x*A(x)).

Original entry on oeis.org

1, 0, 0, 6, 24, 60, 120, 5250, 80976, 726264, 4839120, 86487390, 2283242280, 42585905076, 590667519624, 10115535833130, 286758920451360, 8128299117822960, 186279550983756576, 4123388294626654134, 118916807955913504440, 4102548791571529697580
Offset: 0

Views

Author

Seiichi Manyama, Mar 09 2024

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[1 - LambertW[-E^x*x^4]/x, {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Mar 10 2024 *)
  • PARI
    a(n) = n!*sum(k=0, n\3, k^(n-3*k)*binomial(n-3*k+1, k)/((n-3*k+1)*(n-3*k)!));

Formula

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

A371045 E.g.f. satisfies A(x) = 1 + x^3*A(x)*exp(x*A(x)).

Original entry on oeis.org

1, 0, 0, 6, 24, 60, 840, 15330, 161616, 1572984, 29031120, 636008670, 11426850600, 210095235636, 5137568918664, 139255673359530, 3574532174656800, 95923063388359920, 2974073508961556256, 98747639807081454774, 3287535337205171488440
Offset: 0

Views

Author

Seiichi Manyama, Mar 09 2024

Keywords

Crossrefs

Programs

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

Formula

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