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!)
A340167 a(n) = 4^(2*(n-1)^2) * Product_{1<=i,j<=n-1} (1 + sin(i*Pi/(2*n))^2 * sin(j*Pi/(2*n))^2). 3
1, 20, 153425, 450075709440, 504979178328238519521, 216703205118496785026106198144000, 35568160616301682717925992221900586646216066081, 2232861039051291914755952483706805051795013026559178904468193280 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = 4^(2*(n-1)^2) * Product_{1<=i,j<=n-1} (1 + cos(i*Pi/(2*n))^2 * cos(j*Pi/(2*n))^2).
a(n) = 4^(2*(n-1)^2) * Product_{1<=i,j<=n-1} (1 + sin(i*Pi/(2*n))^2 * cos(j*Pi/(2*n))^2).
a(n) ~ 2^(4*n^2 - 6*n + 17/4) * (sqrt(2) - 1)^(2*n) * exp(4*A340350*n^2/Pi^2). - Vaclav Kotesovec, Jan 05 2021
MATHEMATICA
Table[4^(2*(n-1)^2) * Product[Product[1 + Sin[i*Pi/(2*n)]^2 * Sin[j*Pi/(2*n)]^2, {i, 1, n-1}], {j, 1, n-1}], {n, 1, 10}] // Round (* Vaclav Kotesovec, Dec 31 2020 *)
PROG
(PARI) default(realprecision, 120);
{a(n) = round(4^(2*(n-1)^2)*prod(i=1, n-1, prod(j=1, n-1, 1+(sin(i*Pi/(2*n))*sin(j*Pi/(2*n)))^2)))}
CROSSREFS
Sequence in context: A348646 A222745 A175853 * A013766 A078354 A203306
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 30 2020
STATUS
approved

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 April 19 06:16 EDT 2024. Contains 371782 sequences. (Running on oeis4.)