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!)
A334258 a(n) = (-1)^n * exp(n) * Sum_{k>=1} (-1)^k * n^(k-1) * k^n / k!. 0
1, 1, 1, -5, -74, -679, -4899, -17289, 325837, 10627109, 199348590, 2684041427, 15872610469, -546948563407, -27499774835519, -778467357484561, -15311413773551790, -125363405319188419, 6452292137017871097, 436442148982835915339, 16494863323310244977581 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
Eric Weisstein's World of Mathematics, Bell Polynomial
FORMULA
E.g.f.: series reversion of -log(1 - x) * exp(-x).
a(n) = (n - 1)! * [x^n] exp(n*(1 - exp(-x))).
a(n) = Sum_{k=1..n} (-1)^(n-k) * Stirling2(n,k) * n^(k-1).
a(n) = (-1)^n * BellPolynomial_n(-n) / n.
MATHEMATICA
nmax = 21; CoefficientList[InverseSeries[Series[-Log[1 - x] Exp[-x], {x, 0, nmax}], x], x] Range[0, nmax]! // Rest
Table[Sum[(-1)^(n - k) StirlingS2[n, k] n^(k - 1), {k, 1, n}], {n, 1, 21}]
Table[(-1)^n BellB[n, -n]/n, {n, 1, 21}]
PROG
(PARI) a(n) = sum(k=1, n, (-1)^(n-k) * stirling(n, k, 2) * n^(k-1)); \\ Michel Marcus, Apr 20 2020
CROSSREFS
Sequence in context: A131958 A051156 A092826 * A322446 A065894 A233013
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Apr 20 2020
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 July 14 15:16 EDT 2024. Contains 374322 sequences. (Running on oeis4.)