OFFSET
0,1
COMMENTS
This is the sequence of fourth terms of "fourth partial sums of m-th powers".
LINKS
Colin Barker, Table of n, a(n) for n = 0..1000
Luciano Ancora, Demonstration of formulas, page 2.
Luciano Ancora, Recurrence relations for partial sums of m-th powers
Index entries for linear recurrences with constant coefficients, signature (10,-35,50,-24).
FORMULA
G.f.: -(638*x^3-777*x^2+294*x-35) / ((x-1)*(2*x-1)*(3*x-1)*(4*x-1)). - Colin Barker, Jan 30 2015
a(n) = 10*a(n-1)-35*a(n-2)+50*a(n-3)-24*a(n-4). - Colin Barker, Jan 30 2015
MATHEMATICA
Table[4^n + 10*2^n + 4*3^n + 20, {n, 0, 28}] (* Michael De Vlieger, Jan 30 2015 *)
PROG
(PARI) vector(30, n, n--; 4^n + 10*2^n + 4*3^n + 20) \\ Colin Barker, Jan 30 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Luciano Ancora, Jan 29 2015
STATUS
approved