login

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”).

A254369
a(n) = 15*2^n + 4^n + 5*3^n + 35.
5
56, 84, 156, 354, 936, 2754, 8736, 29274, 102216, 368274, 1359216, 5110794, 19495896, 75203394, 292596096, 1145977914, 4511183976, 17827536114, 70660511376, 280697078634, 1116961278456, 4450379734434, 17749154257056, 70839585900954, 282887376051336, 1130136853206354, 4516309963145136, 18052528510172874, 72171982026734616
OFFSET
0,1
COMMENTS
This is the sequence of fourth terms of "fifth partial sums of m-th powers".
FORMULA
G.f.: -2*(533*x^3-638*x^2+238*x-28) / ((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[15 2^n + 4^n + 5 3^n + 35, {n, 0, 30}] (* Bruno Berselli, Jan 30 2015 *)
LinearRecurrence[{10, -35, 50, -24}, {56, 84, 156, 354}, 30] (* Harvey P. Dale, Dec 04 2020 *)
PROG
(PARI) vector(30, n, n--; 15*2^n + 4^n + 5*3^n + 35) \\ Colin Barker, Jan 30 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Luciano Ancora, Jan 29 2015
STATUS
approved