A017532 a(n) = (12*n)^12.
0, 8916100448256, 36520347436056576, 4738381338321616896, 149587343098087735296, 2176782336000000000000, 19408409961765342806016, 123410307017276135571456, 612709757329767363772416, 2518170116818978404827136
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..500
- Index entries for linear recurrences with constant coefficients, signature (13,-78,286,-715,1287,-1716,1716,-1287,715,-286,78,-13,1).
Programs
-
Magma
[(12*n)^12: n in [0..10]]; // Vincenzo Librandi, Jul 29 2011
-
Mathematica
(12*Range[0,20])^12 (* Harvey P. Dale, Oct 11 2019 *)
-
Maxima
makelist((12*n)^12,n,0,30); /* Martin Ettl, Oct 21 2012 */
-
PARI
a(n)=(12*n)^12 \\ Charles R Greathouse IV, Jul 29 2011
Comments