login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A352139 Expansion of e.g.f. 1/(exp(x) - log(1 - x)). 5
1, -2, 6, -27, 161, -1205, 10799, -113043, 1351461, -18183781, 271784079, -4469044657, 80160267791, -1557710354083, 32597642189657, -730897865864471, 17480390183397209, -444198879957594857, 11951585821669838395, -339434402344422296117 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = -Sum_{k=1..n} ((k-1)! + 1) * binomial(n,k) * a(n-k).
MATHEMATICA
m = 19; Range[0, m]! * CoefficientList[Series[1/(Exp[x] - Log[1 - x]), {x, 0, m}], x] (* Amiram Eldar, Mar 06 2022 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(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)));
CROSSREFS
Sequence in context: A009308 A032186 A122938 * A234568 A231934 A291979
KEYWORD
sign
AUTHOR
Seiichi Manyama, Mar 06 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 1 05:44 EDT 2024. Contains 372148 sequences. (Running on oeis4.)