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 A367543 #6 Nov 22 2023 11:15:59 %S A367543 1,36,777924,51190934086656,32435802373365731229926400, %T A367543 483207398728525904876601066508152707481600, %U A367543 350969035472356907726779584093506665415605824531908346799718400 %N A367543 a(n) = Product_{i=1..n, j=1..n} (i^2 - i*j + j^2). %F A367543 a(n) = A324426(n) / A079478(n). %F A367543 a(n) ~ 3^(1/6) * Gamma(1/3)^2 * n^(2*n^2 - 1/3) / (2^(5/3) * Pi^(5/3) * exp(3*n^2 - (n^2 + n + 1/6)*Pi/sqrt(3))). %t A367543 Table[Product[Product[(i^2 - i*j + j^2), {i, 1, n}], {j, 1, n}], {n, 1, 10}] %o A367543 (Python) %o A367543 from math import prod, factorial %o A367543 def A367543(n): return (prod(i*(i-j)+j**2 for i in range(1,n) for j in range(i+1,n+1))*factorial(n))**2 # _Chai Wah Wu_, Nov 22 2023 %Y A367543 Cf. A203312, A324403, A367542. %Y A367543 Cf. A324426, A079478. %K A367543 nonn %O A367543 1,2 %A A367543 _Vaclav Kotesovec_, Nov 22 2023