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

A128048
(n^3+n)*8^n.
1
16, 640, 15360, 278528, 4259840, 58195968, 734003200, 8724152320, 99052683264, 1084479242240, 11527692222464, 119571889520640, 1214960348692480, 12129812277624832, 119275021381140480, 1157425104234217472
OFFSET
1,1
FORMULA
G.f.: 16*x*(1+8*x+64*x^2)/(1-8*x)^4. - Vincenzo Librandi, Feb 22 2013
a(n) = 32*a(n-1) -384*a(n-2) +2048*a(n-3) -4096*a(n-4). - Vincenzo Librandi, Feb 23 2013
MATHEMATICA
Table[(n^3 + n) 8^n, {n, 30}] (* or *) CoefficientList[Series[16 (1 + 8 x + 64 x^2)/(1 - 8 x)^4, {x, 0, 20}], x] (* Vincenzo Librandi, Feb 22 2013 *)
PROG
(Magma) [(n^3 + n)*8^n: n in [1..20]]; // Vincenzo Librandi, Feb 22 2013
(Magma) I:=[16, 640, 15360, 278528]; [n le 4 select I[n] else 32*Self(n-1)-384*Self(n-2)+2048*Self(n-3)-4096*Self(n-4): n in [1..20]]; // Vincenzo Librandi, Feb 23 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mohammad K. Azarian, May 02 2007
STATUS
approved