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!)
A356633 a(n) = n! * Sum_{k=0..floor(n/3)} (n - 3*k)^k/6^k. 5
1, 1, 2, 6, 28, 160, 1080, 8540, 78400, 816480, 9492000, 122337600, 1736380800, 26930904000, 453515462400, 8254694448000, 161734564992000, 3397235761920000, 76228261933824000, 1821644243362944000, 46233794313907200000, 1242946827521118720000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: Sum_{k>=0} x^k / (1 - k*x^3/6).
MATHEMATICA
a[n_] := n! * Sum[(n - 3*k)^k/6^k, {k, 0, Floor[n/3]}]; a[0] = 1; Array[a, 22, 0] (* Amiram Eldar, Aug 19 2022 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\3, (n-3*k)^k/6^k);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, x^k/(1-k*x^3/6))))
CROSSREFS
Cf. A352946.
Sequence in context: A354311 A201950 A358265 * A109570 A262002 A245633
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 2 10:51 EDT 2024. Contains 372196 sequences. (Running on oeis4.)