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!)
A356630 a(n) = n! * Sum_{k=0..floor(n/4)} (n - 4*k)^k/(n - 4*k)!. 3
1, 1, 1, 1, 1, 121, 721, 2521, 6721, 378001, 7287841, 59930641, 319429441, 7524471241, 353072319601, 5897248517161, 55827317669761, 726274560953761, 53139878190826561, 1650487849152976801, 25981849479032542081, 317292238756098973081 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
E.g.f.: Sum_{k>=0} x^k / (k! * (1 - k*x^4)).
MATHEMATICA
a[n_] := n! * Sum[(n - 4*k)^k/(n - 4*k)!, {k, 0, Floor[n/4]}]; a[0] = 1; Array[a, 22, 0] (* Amiram Eldar, Aug 19 2022 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\4, (n-4*k)^k/(n-4*k)!);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, x^k/(k!*(1-k*x^4)))))
CROSSREFS
Sequence in context: A367720 A293566 A293507 * A306452 A238250 A361658
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 August 10 19:25 EDT 2024. Contains 375058 sequences. (Running on oeis4.)