login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A340139 a(n) = 4^((n-2)*(n-1)) * Product_{1<=i<j<=n-1} (1 - sin(i*Pi/(2*n))^2 * sin(j*Pi/(2*n))^2). 4

%I #22 Feb 28 2023 23:47:18

%S 1,1,13,1904,3016365,50771120400,8993476465721657,

%T 16670531837245286776832,322175275214070402711647486361,

%U 64754609334534873770923002355900227840

%N a(n) = 4^((n-2)*(n-1)) * Product_{1<=i<j<=n-1} (1 - sin(i*Pi/(2*n))^2 * sin(j*Pi/(2*n))^2).

%H Seiichi Manyama, <a href="/A340139/b340139.txt">Table of n, a(n) for n = 1..45</a>

%F a(n) = 4^((n-2)*(n-1)) * Product_{1<=i<j<=n-1} (1 - cos(i*Pi/(2*n))^2 * cos(j*Pi/(2*n))^2).

%F a(n) ~ sqrt(Gamma(1/4)) * exp(4*G*n^2/Pi) / (Pi^(3/8) * n^(3/4) * 2^(3*n - 9/4) * (1 + sqrt(2))^n), where G is Catalan's constant A006752. - _Vaclav Kotesovec_, Jan 05 2021

%t Table[4^((n-2)*(n-1)) * Product[Product[1 - Sin[i*Pi/(2*n)]^2 * Sin[j*Pi/(2*n)]^2, {i, 1, j-1}], {j, 2, n-1}], {n, 1, 12}] // Round (* _Vaclav Kotesovec_, Dec 31 2020 *)

%o (PARI) default(realprecision, 120);

%o {a(n) = round(4^((n-2)*(n-1))*prod(j=2, n-1, prod(i=1, j-1, 1-(sin(i*Pi/(2*n))*sin(j*Pi/(2*n)))^2)))}

%Y Cf. A007725.

%K nonn

%O 1,3

%A _Seiichi Manyama_, Dec 29 2020

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 4 16:58 EDT 2024. Contains 375685 sequences. (Running on oeis4.)