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!)
A350725 a(n) = Sum_{k=0..n} k! * k^(n-k) * Stirling1(n,k). 2
1, 1, 1, -4, -2, 274, -3442, -12552, 2108664, -63083232, 87416112, 112192496976, -7487840132544, 174521224997040, 19793498724358032, -3109195219736188416, 209306170972547346816, 2973238556525799866496, -3013574861684426837113728, 456220653756733889826621696 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f.: Sum_{k>=0} log(1 + k*x)^k / k^k.
MATHEMATICA
a[0] = 1; a[n_] := Sum[k! * k^(n-k) * StirlingS1[n, k], {k, 1, n}]; Array[a, 20, 0] (* Amiram Eldar, Feb 03 2022 *)
PROG
(PARI) a(n) = sum(k=0, n, k!*k^(n-k)*stirling(n, k, 1));
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, log(1+k*x)^k/k^k)))
CROSSREFS
Sequence in context: A158903 A273148 A276342 * A152030 A072349 A016518
KEYWORD
sign
AUTHOR
Seiichi Manyama, Feb 03 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 16 13:17 EDT 2024. Contains 372552 sequences. (Running on oeis4.)