OFFSET
0,1
REFERENCES
C. Lanczos, Applied Analysis. Prentice-Hall, Englewood Cliffs, NJ, 1956, p. 518.
Theodore J. Rivlin, Chebyshev polynomials: from approximation theory to algebra and number theory, 2. ed., Wiley, New York, 1990.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (16,-96,256,-256).
FORMULA
G.f.: 4*(1+4*x)/(1-4*x)^4.
E.g.f.: (4/3)*(3 +48*x +120*x^2 +64*x^3)*exp(4*x). - G. C. Greubel, Jul 22 2019
MATHEMATICA
Table[4^n*Binomial[2*n+4, 3], {n, 0, 20}] (* G. C. Greubel, Jul 22 2019 *)
LinearRecurrence[{16, -96, 256, -256}, {4, 80, 896, 7680}, 20] (* Harvey P. Dale, Mar 27 2023 *)
PROG
(PARI) vector(20, n, n--; 4^n*binomial(2*n+4, 3)) \\ G. C. Greubel, Jul 22 2019
(Magma) [4^n*Binomial(2*n+4, 3): n in [0..20]]; // G. C. Greubel, Jul 22 2019
(Sage) [4^n*binomial(2*n+4, 3) for n in (0..20)] # G. C. Greubel, Jul 22 2019
(GAP) List([0..20], n-> 4^n*Binomial(2*n+4, 3)); # G. C. Greubel, Jul 22 2019
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
STATUS
approved