OFFSET
0,2
COMMENTS
Chebyshev polynomial of the second kind U(9,n).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (10,-45,120,-210,252,-210,120,-45,10,-1).
FORMULA
G.f.: x*(10 + 151216*x + 6484504*x^2 + 44954320*x^3 + 82614460*x^4 + 44954320*x^5 + 6484504*x^6 + 151216*x^7 + 10*x^8)/(1 - x)^10.
a(n) = 2*n*(4*n^2-2*n-1)*(4*n^2+2*n-1)*(16*n^4-20*n^2+5).
MAPLE
A242854:=n->512*n^9 - 1024*n^7 + 672*n^5 - 160*n^3 + 10*n: seq(A242854(n), n=0..30); # Wesley Ivan Hurt, Feb 04 2017
MATHEMATICA
Table[ChebyshevU[9, n], {n, 0, 20}] (* or *) Table[512 n^9 - 1024 n^7 + 672 n^5 - 160 n^3 + 10 n, {n, 0, 20}]
PROG
(Magma) [512*n^9-1024*n^7+672*n^5-160*n^3+10*n: n in [0..20]];
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, May 30 2014
STATUS
approved