A128043 (n^3+n)*6^n.
12, 360, 6480, 88128, 1010880, 10357632, 97977600, 873400320, 7437339648, 61070837760, 486873649152, 3787601264640, 28864133775360, 216128364576768, 1593927097712640, 11600403939459072, 83448431062548480
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[(n^3 + n)*6^n: n in [1..20]]; // Vincenzo Librandi, Feb 22 2013
-
Mathematica
Table[(n^3 + n) * 6^n, {n, 30}] (* or *) CoefficientList[Series[12 (1 + 6 x + 36 x^2)/(1 - 6 x)^4, {x, 0, 30}], x] (* Vincenzo Librandi, Feb 22 2013 *)
Formula
G.f.: 12*x*(1 + 6*x + 36*x^2)/(1 - 6*x)^4. - Vincenzo Librandi, Feb 22 2013