OFFSET
0,2
COMMENTS
Chebyshev polynomial of the second kind U(5,n).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (6,-15,20,-15,6,-1).
FORMULA
G.f.: 6*x*(1 + 124*x + 390*x^2 + 124*x^3 + x^4)/(1 - x)^6.
a(n) = 2*n*(2*n - 1)*(2*n + 1)*(4*n^2 - 3).
From Elmo R. Oliveira, Jul 06 2026: (Start)
E.g.f.: 2*exp(x)*x*(3 + 192*x + 384*x^2 + 160*x^3 + 16*x^4).
a(n) = 6*a(n-1) - 15*a(n-2) + 20*a(n-3) - 15*a(n-4) + 6*a(n-5) - a(n-6). (End)
MATHEMATICA
Table[32 n^5 - 32 n^3 + 6 n, {n, 0, 40}]
(* Alternative: *)
Table[ChebyshevU[5, n], {n, 0, 40}]
PROG
(Magma) [32*n^5-32*n^3+6*n: n in [0..40]];
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, May 29 2014
EXTENSIONS
Edited by Bruno Berselli, May 29 2014
STATUS
approved
