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!)
A354437 a(n) = n! * Sum_{k=0..n} (-k)^(n-k)/k!. 2
1, 1, -1, 1, 13, -199, 2251, -19991, 7001, 7530193, -330734249, 11005284401, -300961551131, 4886902605001, 184195977487523, -28517140157423399, 2322376314679777201, -153646291657993064671, 8388000381774954552751, -287686436757241322569247 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
E.g.f.: Sum_{k>=0} x^k / (k! * (1 + k*x)).
MATHEMATICA
Join[{1}, Table[n!*Sum[ (-k)^(n - k)/k!, {k, 0, n}], {n, 1, 20}]] (* Vaclav Kotesovec, May 28 2022 *)
PROG
(PARI) a(n) = n!*sum(k=0, n, (-k)^(n-k)/k!);
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, x^k/(k!*(1+k*x)))))
(Python)
from math import factorial
def A354437(n): return sum(factorial(n)*(-k)**(n-k)//factorial(k) for k in range(n+1)) # Chai Wah Wu, May 28 2022
CROSSREFS
Sequence in context: A130549 A361171 A157690 * A239285 A297634 A305147
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 28 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 October 4 01:05 EDT 2023. Contains 365872 sequences. (Running on oeis4.)