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!)
A356634 a(n) = n! * Sum_{k=0..floor(n/4)} (n - 4*k)^k/24^k. 5
1, 1, 2, 6, 24, 125, 780, 5670, 47040, 439110, 4561200, 52182900, 651974400, 8832874050, 129001672800, 2020822303500, 33805804032000, 601587281295000, 11348960759136000, 226275153994890000, 4755046903326720000, 105061084389756495000, 2435176811445618240000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: Sum_{k>=0} x^k / (1 - k*x^4/24).
MATHEMATICA
a[n_] := n! * Sum[(n - 4*k)^k/24^k, {k, 0, Floor[n/4]}]; a[0] = 1; Array[a, 23, 0] (* Amiram Eldar, Aug 19 2022 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\4, (n-4*k)^k/24^k);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, x^k/(1-k*x^4/24))))
CROSSREFS
Sequence in context: A304198 A243806 A201158 * A191343 A368761 A052862
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 16 10:27 EDT 2024. Contains 374345 sequences. (Running on oeis4.)