The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A355376 a(n) = Sum_{k=0..n} k! * (-k)^(n-k) * Stirling2(n,k). 1
1, 1, 1, -5, -29, 271, 3091, -61025, -744029, 34875871, 211095331, -37415273345, 300267009571, 61080483836191, -2133136977892829, -119576844586022465, 11752559492568148771, 94348367247493654111, -68793303669649907424989, 2764486881197709482575615 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f.: Sum_{k>=0} (1 - exp(-k * x))^k / k^k.
MATHEMATICA
a[n_] := Sum[k! * (-k)^(n - k) * StirlingS2[n, k], {k, 0, n}]; a[0] = 1; Array[a, 20, 0] (* Amiram Eldar, Jun 30 2022 *)
PROG
(PARI) a(n) = sum(k=0, n, k!*(-k)^(n-k)*stirling(n, k, 2));
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (1-exp(-k*x))^k/k^k)))
CROSSREFS
Sequence in context: A181356 A177440 A292567 * A332517 A332469 A112799
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jun 30 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 23 07:28 EDT 2024. Contains 372760 sequences. (Running on oeis4.)