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 A341478 #17 Feb 28 2023 23:48:11 %S A341478 1,1,6,112,6664,1270016,776239200,1522266730496,9580300901941376, %T A341478 193509323594243571712,12545297912843041612924416, %U A341478 2610531939025273190037188509696,1743627211475190637398673259679582208 %N A341478 a(n) = sqrt( Product_{1<=j<=n-1} Product_{1<=k<=n} (4*sin(j*Pi/n)^2 + 4*sin((2*k-1)*Pi/(2*n))^2) ). %F A341478 a(n) ~ exp(2*G*n^2/Pi) / 2^(3/4), where G is Catalan's constant A006752. - _Vaclav Kotesovec_, Feb 14 2021 %t A341478 Table[Sqrt[Product[4*Sin[j*Pi/n]^2 + 4*Sin[(2*k - 1)*Pi/(2*n)]^2, {k, 1, n}, {j, 1, n-1}]], {n, 0, 15}] // Round (* _Vaclav Kotesovec_, Feb 14 2021 *) %o A341478 (PARI) default(realprecision, 120); %o A341478 a(n) = round(sqrt(prod(j=1, n-1, prod(k=1, n, 4*sin(j*Pi/n)^2+4*sin((2*k-1)*Pi/(2*n))^2)))); %Y A341478 Cf. A335586, A340562, A341479, A341493. %K A341478 nonn %O A341478 0,3 %A A341478 _Seiichi Manyama_, Feb 13 2021