OFFSET
0,2
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..500
Index entries for linear recurrences with constant coefficients, signature (52,-673,2548,-3856,2548,-673,52,-1).
FORMULA
a(n)^2 = 4^n * Resultant(U_{2*n}(x/2), T_{6}(i*x/2)), where T_n(x) is a Chebyshev polynomial of the first kind, U_n(x) is a Chebyshev polynomial of the second kind and i = sqrt(-1).
G.f.: (1 - x)*(1 - 33*x + 243*x^2 - 466*x^3 + 243*x^4 - 33*x^5 + x^6)/(1 - 52*x + 673*x^2 - 2548*x^3 + 3856*x^4 - 2548*x^5 + 673*x^6 - 52*x^7 + x^8). - Andrew Howroyd, Nov 14 2025
MATHEMATICA
a[n_] := 2^n * Sqrt[Resultant[ChebyshevU[2*n, x/2], ChebyshevT[6, I*x/2], x]]; Array[a, 18, 0] (* Amiram Eldar, May 04 2021 *)
PROG
(PARI) {a(n) = sqrtint(4^n*polresultant(polchebyshev(2*n, 2, x/2), polchebyshev(6, 1, I*x/2)))}
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Apr 17 2020
STATUS
approved
