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!)
A340165 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). 3
1, 1, 19, 7056, 51251277, 7280323311888, 20225477546584790663, 1098876823994281426921193472, 1167619533875635661974056722756222809, 24263631353490502503207804571072304043237024000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
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).
a(n) ~ 2^(2*n^2 - 3*n + 35/8) * (1 - sqrt(2*sqrt(2)-2))^n * exp(2*A340350*n^2/Pi^2). - Vaclav Kotesovec, Jan 05 2021
MATHEMATICA
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 *)
PROG
(PARI) default(realprecision, 120);
{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)))}
CROSSREFS
Sequence in context: A201303 A013724 A067267 * A124989 A265964 A156973
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 July 15 05:04 EDT 2024. Contains 374324 sequences. (Running on oeis4.)