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.

A353994 Expansion of e.g.f. 1/(1 + log(1 - x) * (exp(x) - 1)).

Original entry on oeis.org

1, 0, 2, 6, 42, 305, 2815, 29792, 362432, 4952481, 75239143, 1257202584, 22918653428, 452620972245, 9626556838015, 219367419292972, 5332164894151648, 137709755844024929, 3765736630207259055, 108696751776637007080, 3302628833563666988740
Offset: 0

Views

Author

Seiichi Manyama, May 13 2022

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+log(1-x)*(exp(x)-1))))

Formula

a(0) = 1; a(n) = Sum_{k=1..n} A052863(k) * binomial(n,k) * a(n-k).

A351502 Expansion of e.g.f. 1/(1 + log(1 - x)*exp(-x)).

Original entry on oeis.org

1, 1, 1, 2, 10, 59, 373, 2736, 23504, 229029, 2477219, 29473344, 383104588, 5401356583, 82069677701, 1336740758544, 23234632127072, 429259519490985, 8399672396793063, 173538299521211128, 3774815414843398588, 86230662745426403771, 2063931187442813081881
Offset: 0

Views

Author

Seiichi Manyama, May 04 2022

Keywords

Crossrefs

Programs

  • Mathematica
    With[{nn=30},CoefficientList[Series[1/(1+Log[1-x]Exp[-x]),{x,0,nn}],x] Range[0,nn]!] (* Harvey P. Dale, May 03 2023 *)
  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+log(1-x)*exp(-x))))

Formula

a(0) = 1; a(n) = Sum_{k=1..n} A002741(k) * binomial(n,k) * a(n-k).
Showing 1-2 of 2 results.