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.

A376495 E.g.f. satisfies A(x) = exp(x^3 * A(x)^3 / (1 - x)).

Original entry on oeis.org

1, 0, 0, 6, 24, 120, 3240, 40320, 463680, 11491200, 248572800, 4869849600, 135896745600, 4017466252800, 113150157120000, 3765622699238400, 137549036072448000, 5019223860338688000, 199794776937044889600, 8636618647667288678400
Offset: 0

Views

Author

Seiichi Manyama, Sep 25 2024

Keywords

Crossrefs

Programs

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

Formula

E.g.f.: exp( -LambertW(-3*x^3 / (1-x))/3 ).
a(n) = n! * Sum_{k=0..floor(n/3)} (3*k+1)^(k-1) * binomial(n-2*k-1,n-3*k)/k!.

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

Original entry on oeis.org

1, 0, 2, 6, 60, 480, 5880, 75600, 1197840, 20865600, 415074240, 9067766400, 218808596160, 5739600746880, 163303845344640, 4998933984844800, 164036362839148800, 5740920215225395200, 213551108122018867200, 8412438143909940940800, 349915152951011468620800
Offset: 0

Views

Author

Seiichi Manyama, Sep 26 2024

Keywords

Crossrefs

Programs

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

Formula

E.g.f.: exp( -LambertW(-x^2 / (1-x)) ).
a(n) = n! * Sum_{k=0..floor(n/2)} (k+1)^(k-1) * binomial(n-k-1,n-2*k)/k!.
a(n) ~ exp(1) * sqrt(1 + 4*exp(1) - sqrt(1 + 4*exp(1))) * 2^(n - 1/2) * n^(n-1) / ((1 + 2*exp(1) - sqrt(1 + 4*exp(1))) * (-1 + sqrt(1 + 4*exp(1)))^(n-1)). - Vaclav Kotesovec, Sep 26 2024
Showing 1-2 of 2 results.