The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A306432 a(n) = Sum_{0<=i<j<k<=n} (i+j+k)!/(i!*j!*k!). 2
0, 0, 3, 77, 1777, 41088, 964199, 22962721, 553886872, 13504654074, 332253097450, 8237141855085, 205552200503455, 5158397884289338, 130087682458168777, 3294763277704155587, 83764781257030939439, 2136808562574516060202, 54674217200832983666877 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ 3^(3*n + 7/2) / (832*Pi*n). - Vaclav Kotesovec, Apr 05 2019
MAPLE
g:= proc(n) local i, j;
add(add((i+j+n)!/(i!*j!*n!), j=i+1..n-1), i=0..n-2)
end proc:
ListTools:-PartialSums(map(g, [$0..30])); # Robert Israel, May 16 2019
MATHEMATICA
Table[Sum[Sum[Sum[(i + j + k)!/(i!*j!*k!), {i, 0, j-1}], {j, 0, k-1}], {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Apr 05 2019 *)
PROG
(PARI) {a(n) = sum(i=0, n, sum(j=i+1, n, sum(k=j+1, n, (i+j+k)!/(i!*j!*k!))))}
CROSSREFS
Sequence in context: A335722 A183961 A250328 * A303096 A324307 A065993
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 05 2019
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 June 5 01:34 EDT 2024. Contains 373102 sequences. (Running on oeis4.)