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!)
A361677 Constant term in the expansion of (1 + x + y + z + 1/(x*y) + 1/(y*z) + 1/(z*x))^n. 2
1, 1, 1, 19, 73, 181, 1711, 10081, 38809, 256033, 1696861, 8388271, 49449511, 326195299, 1847392093, 10789655059, 69202030969, 418647580489, 2498113460881, 15735859252147, 97919649290053, 598317173139313, 3748943081117323 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/3)} (3*k)!/k!^3 * binomial(3*k,k) * binomial(n,3*k).
From Vaclav Kotesovec, Mar 22 2023: (Start)
Recurrence: 2*n^3*(2*n - 3)*a(n) = 2*(10*n^4 - 32*n^3 + 38*n^2 - 22*n + 5)*a(n-1) - 2*(n-1)*(2*n - 3)*(10*n^2 - 24*n + 17)*a(n-2) + (n-2)*(n-1)*(769*n^2 - 2331*n + 1594)*a(n-3) - 2*(n-3)*(n-2)*(n-1)*(739*n - 1481)*a(n-4) + 733*(n-4)*(n-3)*(n-2)*(n-1)*a(n-5).
a(n) ~ sqrt(733/108 + 1/2^(2/3) + 9/2^(4/3)) * (1 + 9/2^(2/3))^n / (2 * Pi^(3/2) * n^(3/2)). (End)
MATHEMATICA
Table[Sum[(3*k)!/k!^3 * Binomial[3*k, k] * Binomial[n, 3*k], {k, 0, n/3}], {n, 0, 25}] (* Vaclav Kotesovec, Mar 22 2023 *)
PROG
(PARI) a(n) = sum(k=0, n\3, (3*k)!/k!^3*binomial(3*k, k)*binomial(n, 3*k));
CROSSREFS
Sequence in context: A141960 A178541 A157889 * A255897 A220447 A294460
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 20 2023
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 3 04:24 EDT 2024. Contains 372205 sequences. (Running on oeis4.)