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.

A277509 Expansion of e.g.f. 1/((1+LambertW(-x))*(1+x)).

Original entry on oeis.org

1, 0, 4, 15, 196, 2145, 33786, 587041, 12080888, 278692497, 7213075030, 205967845281, 6444486304884, 219096784628761, 8044651840755362, 317224112769528945, 13371158269397088496, 599930571306586259745, 28547657791777984900014, 1436014157616531876023713
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 18 2016

Keywords

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[1/(1+LambertW[-x])/(1+x), {x, 0, 20}], x] * Range[0, 20]!
    Flatten[{1, Table[(-1)^n*n! + Sum[(-1)^(n-k) * Binomial[n, k] * k^k * (n-k)!, {k, 1, n}], {n, 1, 20}]}]
  • PARI
    my(x='x+O('x^50)); Vec(serlaplace(1/((1 + lambertw(-x))*(1+x)))) \\ G. C. Greubel, Nov 12 2017

Formula

For n > 0, a(n) = (-1)^n*n!+Sum_{k=1..n} (-1)^(n-k) * binomial(n,k) * k^k * (n-k)!.
a(n) ~ n^n / (1+exp(-1)).
a(0) = 1; a(n) = -n*a(n-1) + n^n. - Seiichi Manyama, May 01 2023

A277507 E.g.f.: -1/((1-LambertW(-x))*(1-x)).

Original entry on oeis.org

-1, 0, 0, 3, 28, 305, 3846, 57337, 998600, 20036529, 456403690, 11647754921, 329290975212, 10214585950153, 344897398385918, 12590837785019145, 494101941398352016, 20740772742716097377, 927276395603713539282, 43987299891665164562377, 2206610456287703987567540
Offset: 0

Views

Author

Vaclav Kotesovec, Oct 18 2016

Keywords

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[-1/(1-LambertW[-x])/(1-x), {x, 0, 20}], x] * Range[0, 20]!
  • PARI
    x='x+O('x^50); Vec(serlaplace(-1/((1 - lambertw(-x))*(1-x)))) \\ G. C. Greubel, Nov 08 2017

Formula

a(n) ~ n^(n-1) / (4*(1-exp(-1))).
Showing 1-2 of 2 results.