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!)
A355575 a(n) = n! * Sum_{k=0..floor(n/3)} k^(n - 3*k)/k!. 4
1, 0, 0, 6, 24, 120, 1080, 10080, 120960, 1874880, 34473600, 738460800, 17982518400, 489858969600, 14834839219200, 498452777222400, 18583796335104000, 768773914900992000, 35220800475250790400, 1779227869201400217600, 98469904378626772992000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f.: Sum_{k>=0} x^(3*k) / (k! * (1 - k * x)).
a(n) ~ sqrt(Pi) * exp((n - 1/2)/LambertW(exp(3/4)*(2*n - 1)/8) - 2*n) * n^(2*n + 1/2) / (sqrt(1 + LambertW(exp(3/4)*(2*n - 1)/8)) * 2^(2*n + 1/2) * LambertW(exp(3/4)*(2*n - 1)/8)^n). - Vaclav Kotesovec, Oct 30 2022
MATHEMATICA
Join[{1}, Table[n!*Sum[k^(n - 3*k)/k!, {k, 0, n/3}], {n, 1, 20}]] (* Vaclav Kotesovec, Oct 30 2022 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\3, k^(n-3*k)/k!);
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, x^(3*k)/(k!*(1-k*x)))))
CROSSREFS
Sequence in context: A182083 A293049 A293123 * A060249 A052557 A357192
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 17 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 2 05:25 EDT 2024. Contains 373947 sequences. (Running on oeis4.)