OFFSET
0,1
LINKS
Colin Barker, Table of n, a(n) for n = 0..663
Index entries for linear recurrences with constant coefficients, signature (42,-336,512).
FORMULA
From Colin Barker, May 03 2015: (Start)
a(n) = 2^(1+n)*(3-4^(2+n)+16^(1+n))
a(n) = 42*a(n-1)-336*a(n-2)+512*a(n-3) for n>2.
G.f.: -6*(88*x+1) / ((2*x-1)*(8*x-1)*(32*x-1)).
(End)
MAPLE
with(orthopoly):seq(U(5, 2^i), i=0..24);
MATHEMATICA
Table[ChebyshevU[5, 2^n], {n, 1, 40}] (* Vladimir Joseph Stephan Orlovsky, Nov 03 2009 *)
LinearRecurrence[{42, -336, 512}, {6, 780, 30744}, 16] (* Jean-François Alcover, Dec 04 2017 *)
PROG
(PARI) Vec(-6*(88*x+1)/((2*x-1)*(8*x-1)*(32*x-1)) + O(x^100)) \\ Colin Barker, May 03 2015
(PARI) a(n) = polchebyshev(5, 2, 2^n) \\ Michel Marcus, May 03 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved