OFFSET
0,2
COMMENTS
Subsequence of A047351. [Bruno Berselli, Feb 07 2013]
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (24,-192,512).
FORMULA
G.f.: 8*x*(1 + 8*x)/(1 - 8*x)^3. - Vincenzo Librandi, Feb 06 2013
a(n) = 24*a(n-1) - 192*a(n-2) + 512*a(n-3). - Vincenzo Librandi, Feb 06 2013
EXAMPLE
a(1) = 1^2 * 8^1 = 1 * 8 = 8.
a(2) = 2^2 * 8^2 = 4 * 64 = 256.
a(3) = 3^2 * 8^3 = 9 * 512 = 4608.
MATHEMATICA
LinearRecurrence[{24, -192, 512}, {0, 8, 256}, 30] (* or *) CoefficientList[Series[8 x (1 + 8 x)/((1 - 8 x)^3), {x, 0, 30}], x] (* Vincenzo Librandi, Feb 06 2013 *)
Table[n^2 8^n, {n, 0, 19}] (* Alonso del Arte, Feb 06 2013 *)
PROG
(Magma) [n^2*8^n: n in [0..20]]; // Vincenzo Librandi, Feb 06 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mohammad K. Azarian, Apr 07 2007
STATUS
approved