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!)
A325052 a(n) = Product_{i=0..n, j=0..n, k=0..n} (i! + j! + k!). 3
3, 6561, 10319560704000000, 47749397192482757629144508002855841842593792000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Next term is too long to be included.
LINKS
FORMULA
a(n) ~ c * 2^(n^3/2 + 3*n^2 + 3*n) * 3^n * Pi^(n^3/2 + 3*n^2/2 + 3*n/2) * n^(3*n^4/4 + 3*n^3 + 17*n^2/4 + 5*n/2 + 601/120) / exp(15*n^4/16 + 3*n^3 + 3*n^2 - 21*n/4), where c = 28023.0953536911860317693532637428153075420958129597133...
MATHEMATICA
Table[Product[i! + j! + k!, {i, 0, n}, {j, 0, n}, {k, 0, n}], {n, 0, 5}]
Clear[a]; a[n_] := a[n] = If[n == 0, 3, a[n-1] * Product[k! + j! + n!, {j, 0, n}, {k, 0, n}]^3 * (3*n!) / (Product[k! + 2*n!, {k, 0, n}]^3)]; Table[a[n], {n, 0, 5}]
CROSSREFS
Sequence in context: A185671 A338412 A187879 * A283019 A056749 A281788
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Mar 26 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 April 24 11:40 EDT 2024. Contains 371936 sequences. (Running on oeis4.)