This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A325052 #10 Mar 28 2019 03:40:33 %S A325052 3,6561,10319560704000000, %T A325052 47749397192482757629144508002855841842593792000000000 %N A325052 a(n) = Product_{i=0..n, j=0..n, k=0..n} (i! + j! + k!). %C A325052 Next term is too long to be included. %F A325052 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... %t A325052 Table[Product[i! + j! + k!, {i, 0, n}, {j, 0, n}, {k, 0, n}], {n, 0, 5}] %t A325052 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}] %Y A325052 Cf. A306594, A306729, A324425, A325053. %K A325052 nonn %O A325052 0,1 %A A325052 _Vaclav Kotesovec_, Mar 26 2019