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-1 of 1 results.

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

Original entry on oeis.org

1, 1, 3, 16, 149, 1656, 22567, 367144, 7020729, 153727408, 3792553451, 104109493104, 3149158146037, 104087591605336, 3732676321011471, 144352230854996056, 5988802115089340273, 265333292818927985376, 12503715930615717645139, 624511093178389790592352
Offset: 0

Views

Author

Seiichi Manyama, Sep 28 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = n! * Sum_{k=0..floor(n/4)} (n-3*k+1)^(n-3*k-1) * binomial(n-3*k,k)/(n-3*k)!.
E.g.f.: exp( -LambertW(-x*(1+x^3)) ).
From Vaclav Kotesovec, Oct 10 2024: (Start)
E.g.f.: -LambertW(-x*(1+x^3))/(x*(1+x^3)).
a(n) ~ sqrt(1 + 4*r^3) * n^(n-1) / (exp(n - 3/2) * r^(n - 1/2)), where r = 0.3524487947753533587882657130849651130602232209406... is the positive real root of the equation r*(1 + r^3) = exp(-1). (End)
Showing 1-1 of 1 results.