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!)
A356628 a(n) = n! * Sum_{k=0..floor(n/2)} (n - 2*k)^k/(n - 2*k)!. 7
1, 1, 1, 7, 25, 181, 1561, 12811, 188497, 2071945, 38889361, 620762671, 12917838121, 291278938237, 6667342764265, 194869722610291, 5137978752994081, 177509783765281681, 5610285632192738977, 215195998789004395735, 8228064506323330305721 (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)).
a(n) ~ sqrt(Pi) * exp((n-1)/(2*LambertW(exp(1/3)*(n-1)/3)) - 3*n/2) * n^((3*n + 1)/2) / (sqrt(1 + LambertW(exp(1/3)*(n - 1)/3)) * 3^((n+1)/2) * LambertW(exp(1/3)*(n-1)/3)^(n/2)). - Vaclav Kotesovec, Nov 01 2022
MATHEMATICA
a[n_] := n! * Sum[(n - 2*k)^k/(n - 2*k)!, {k, 0, Floor[n/2]}]; a[0] = 1; Array[a, 21, 0] (* Amiram Eldar, Aug 19 2022 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\2, (n-2*k)^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)))))
CROSSREFS
Sequence in context: A191237 A088009 A293532 * A208823 A197913 A361777
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 May 1 17:43 EDT 2024. Contains 372175 sequences. (Running on oeis4.)