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.

A352270 Expansion of e.g.f. 1/(2 - exp(x) + log(1 - x)).

Original entry on oeis.org

1, 2, 10, 75, 751, 9405, 141361, 2478959, 49683047, 1120216645, 28064294201, 773391141325, 23250533411821, 757231705088131, 26558855360366239, 998051946325525971, 40006049065833007891, 1703833370634756077097, 76833773059665726636621
Offset: 0

Views

Author

Seiichi Manyama, Mar 10 2022

Keywords

Crossrefs

Programs

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

Formula

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