OFFSET
0,3
COMMENTS
LINKS
Bruno Berselli, Table of n, a(n) for n = 0..1000
B. Berselli, A description of the transform in Comments lines: website Matem@ticamente (in Italian).
Index entries for linear recurrences with constant coefficients, signature (11,-50,120,-160,112,-32).
FORMULA
G.f.: x*(1+2*x)*(1+20*x+4*x^2)/((1-x)*(1-2*x)^5).
a(n) = (1/2) * Sum_{k=0..n} Sum_{i=0..n} k^4 * C(k,i). - Wesley Ivan Hurt, Sep 21 2017
MATHEMATICA
LinearRecurrence[{11, -50, 120, -160, 112, -32}, {0, 1, 33, 357, 2405, 12405}, 26]
Table[2^n(n^4-4n^3+18n^2-52n+75)-75, {n, 0, 30}] (* Harvey P. Dale, Mar 08 2023 *)
PROG
(Magma) m:=25; R<x>:=PowerSeriesRing(Integers(), m); [0] cat Coefficients(R!((1+2*x)*(1+20*x+4*x^2)/((1-x)*(1-2*x)^5)));
(PARI) for(n=0, 25, print1(2^n*(n^4-4*n^3+18*n^2-52*n+75)-75", "));
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Bruno Berselli, Mar 07 2012
STATUS
approved