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

A128787
n^2*8^n.
1
0, 8, 256, 4608, 65536, 819200, 9437184, 102760448, 1073741824, 10871635968, 107374182400, 1039382085632, 9895604649984, 92908732547072, 862017116176384, 7916483719987200, 72057594037927936, 650770146155036672
OFFSET
0,2
COMMENTS
Subsequence of A047351. [Bruno Berselli, Feb 07 2013]
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
Sequence in context: A372670 A291850 A130034 * A013824 A010044 A374283
KEYWORD
nonn,easy
AUTHOR
Mohammad K. Azarian, Apr 07 2007
STATUS
approved