Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #19 Dec 29 2019 12:46:24
%S 462,924,2508,8646,35112,159654,787968,4137966,22807752,130656534,
%T 772253328,4683193086,29012227992,182964472614,1171328741088,
%U 7594839621006,49780643849832,329318254755894,2195866174387248,14741498331453726,99542297086537272
%N a(n) = 35*4^n + 126*2^n + 70*3^n + 15*5^n + 5*6^n + 7^n + 210.
%C This is the sequence of seventh terms of "fifth partial sums of m-th powers".
%H Colin Barker, <a href="/A254468/b254468.txt">Table of n, a(n) for n = 0..1000</a>
%H Luciano Ancora, <a href="https://oeis.org/A254370/a254370.pdf">Demonstration of formulas</a>, page 2.
%H Luciano Ancora, <a href="/A254364/a254364_1.pdf">Recurrence relations for partial sums of m-th powers</a>
%H <a href="/index/Rec#order_07">Index entries for linear recurrences with constant coefficients</a>, signature (28,-322,1960,-6769,13132,-13068,5040).
%F G.f.: -6*(259610*x^6 -461263*x^5 +319473*x^4 -111595*x^3 +20900*x^2 -2002*x +77) / ((x -1)*(2*x -1)*(3*x -1)*(4*x -1)*(5*x -1)*(6*x -1)*(7*x -1)). - _Colin Barker_, Jan 31 2015
%F a(n) = 28*a(n-1) -322*a(n-2) +1960*a(n-3) -6769*a(n-4) +13132*a(n-5) -13068*a(n-6) +5040*a(n-7). - _Colin Barker_, Jan 31 2015
%t Table[35 4^n + 126 2^n + 70 3^n + 15 5^n + 5 6^n + 7^n + 210, {n, 0, 25}] (* _Michael De Vlieger_, Jan 31 2015 *)
%t LinearRecurrence[{28,-322,1960,-6769,13132,-13068,5040},{462,924,2508,8646,35112,159654,787968},30] (* _Harvey P. Dale_, Dec 29 2019 *)
%o (PARI) vector(30, n, n--; 35*4^n + 126*2^n + 70*3^n + 15*5^n + 5*6^n + 7^n + 210) \\ _Colin Barker_, Jan 31 2015
%Y Cf. A168614, A254368, A254369, A254370, A254467.
%K nonn,easy
%O 0,1
%A _Luciano Ancora_, Jan 31 2015