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!)
A356029 a(n) = n! * Sum_{k=0..floor(n/2)} (n - 2*k)^k/(2^k * (n - 2*k)!). 3
1, 1, 1, 4, 13, 61, 421, 2626, 27049, 245953, 3069721, 40222216, 576988501, 10058716669, 169773404893, 3596206855606, 73450508303761, 1775382487932001, 43993288886533489, 1183551336464017708, 34806599282992709341, 1043452963148195577181 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f.: Sum_{k>=0} x^k / (k! * (1 - k*x^2/2)).
MATHEMATICA
a[n_] := n! * Sum[(n - 2*k)^k/(2^k*(n - 2*k)!), {k, 0, Floor[n/2]}]; a[0] = 1; Array[a, 22, 0] (* Amiram Eldar, Aug 19 2022 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\2, (n-2*k)^k/(2^k*(n-2*k)!));
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, x^k/(k!*(1-k*x^2/2)))))
CROSSREFS
Sequence in context: A208592 A367888 A351933 * A213093 A135312 A287145
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 18 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 July 30 12:09 EDT 2024. Contains 374743 sequences. (Running on oeis4.)