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!)
A334088 a(n) = sqrt(Resultant(T(2*n,x/2), T(2*n,i*x/2))), where T(n,x) is a Chebyshev polynomial of the first kind and i = sqrt(-1). 4
1, 1, 8, 676, 591872, 5347119376, 497996601804800, 477995151754478453824, 4727827717838439286122217472, 481856411624794348153802518369517824, 506033683217425527860454091268429289861152768 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Wikipedia, Resultant
FORMULA
a(n) ~ exp(4*G*n^2/Pi) / 2^(2*n - 1/4), where G is Catalan's constant A006752. - Vaclav Kotesovec, Apr 14 2020
MATHEMATICA
Table[Sqrt[Resultant[ChebyshevT[2*n, x/2], ChebyshevT[2*n, I*x/2], x]], {n, 0, 12}] (* Vaclav Kotesovec, Apr 14 2020 *)
PROG
(PARI) {a(n) = sqrtint(polresultant(polchebyshev(2*n, 1, x/2), polchebyshev(2*n, 1, I*x/2)))}
(Python)
from math import isqrt
from sympy.abc import x
from sympy import resultant, chebyshevt, I
def A334088(n): return isqrt(resultant(chebyshevt(n<<1, x/2), chebyshevt(n<<1, I*x/2))) if n else 1 # Chai Wah Wu, Nov 07 2023
CROSSREFS
Sequence in context: A128875 A199801 A278857 * A343191 A202910 A332168
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 14 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 May 7 17:41 EDT 2024. Contains 372312 sequences. (Running on oeis4.)