OFFSET
0,1
LINKS
Colin Barker, Table of n, a(n) for n = 0..829
Index entries for linear recurrences with constant coefficients, signature (21,-84,64).
FORMULA
a(n) = 16^(n+1) - 3*4^(n+1) + 1.
a(n) = 21*a(n-1) - 84*a(n-2) + 64*a(n-3) for n>2. - Colin Barker, May 03 2015
G.f.: (64*x^2-104*x-5) / ((x-1)*(4*x-1)*(16*x-1)). - Colin Barker, May 03 2015
MAPLE
with(orthopoly):seq(U(4, 2^i), i=0..24);
MATHEMATICA
Table[ChebyshevU[4, 2^n], {n, 1, 40}] (* Vladimir Joseph Stephan Orlovsky, Nov 03 2009 *)
PROG
(PARI) Vec((64*x^2-104*x-5)/((x-1)*(4*x-1)*(16*x-1)) + O(x^100)) \\ Colin Barker, May 03 2015
(PARI) a(n) = polchebyshev(4, 2, 2^n) \\ Michel Marcus, May 03 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved