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 A367679 #8 Nov 26 2023 12:59:07 %S A367679 1,1936,1765124816400,19271059559619728900751360000, %T A367679 25048411180596698786915756280274804766474649600000000, %U A367679 23045227505577134384745253646275782332295626096040088365089618773238077194240000000000 %N A367679 a(n) = Product_{i=1..n, j=1..n} (i^4 - i^3*j + i^2*j^2 - i*j^3 + j^4). %F A367679 a(n) = A324438(n) / A079478(n). %F A367679 a(n) ~ c * n^(4*n^2 - 5/6) * phi^(sqrt(5)*n*(n+1)) / exp(6*n^2 - sqrt(phi)*Pi*n*(n+1)/5^(1/4)), where phi = A001622 is the golden ratio and c = 0.2505211390193028244009922677012518708897316924498037078191143761182342931773594... %t A367679 Table[Product[i^4 - i^3*j + i^2*j^2 - i*j^3 + j^4, {i, 1, n}, {j, 1, n}], {n, 1, 6}] %o A367679 (Python) %o A367679 from math import prod, factorial %o A367679 def A367679(n): return (prod(i*(i*(i*(i-j)+j**2)-j**3)+j**4 for i in range(1,n) for j in range(i+1,n+1))*factorial(n)**2)**2 # _Chai Wah Wu_, Nov 26 2023 %Y A367679 Cf. A079478, A324437, A324438, A367550, A367668. %K A367679 nonn %O A367679 1,2 %A A367679 _Vaclav Kotesovec_, Nov 26 2023