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.

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

Original entry on oeis.org

1, 3, 19, 202, 3085, 61886, 1544029, 46182900, 1612759369, 64455582394, 2902794546961, 145497909334856, 8035136800888333, 484821204654219798, 31735810390729211173, 2240132583683741633116, 169624462686462529305745, 13715713402047448280358002, 1179576532854283015832748697
Offset: 0

Views

Author

Seiichi Manyama, Nov 14 2024

Keywords

Crossrefs

Programs

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

Formula

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