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 A340293 #16 Feb 28 2023 23:48:45 %S A340293 1,1,11,1247,1455913,17511093953,2169916151129091, %T A340293 2770393222231417622719,36443188794328204864735075793, %U A340293 4939371777650229260975457785579794433,6897784079863728378183626237683602071537213179 %N A340293 a(n) = 4^((n-1)*n) * Product_{1<=j<k<=n} (1 - sin(j*Pi/(2*n+1))^2 * sin(k*Pi/(2*n+1))^2). %F A340293 a(n) ~ exp(G*(2*n+1)^2/Pi) / (2^(2*n - 1/8) * (1 + sqrt(2))^(n + 1/2)), where G is Catalan's constant A006752. - _Vaclav Kotesovec_, Jan 04 2021 %t A340293 Table[2^(2*n*(n-1)) * Product[Product[1 - Sin[j*Pi/(2*n + 1)]^2*Sin[k*Pi/(2*n + 1)]^2, {k, j+1, n}], {j, 1, n}], {n, 0, 12}] // Round (* _Vaclav Kotesovec_, Jan 04 2021 *) %o A340293 (PARI) default(realprecision, 120); %o A340293 {a(n) = round(4^((n-1)*n)*prod(j=1, n, prod(k=j+1, n, 1-(sin(j*Pi/(2*n+1))*sin(k*Pi/(2*n+1)))^2)))} %Y A340293 Cf. A340185, A340292. %K A340293 nonn %O A340293 0,3 %A A340293 _Seiichi Manyama_, Jan 03 2021