A016920 a(n) = (6*n)^12.
0, 2176782336, 8916100448256, 1156831381426176, 36520347436056576, 531441000000000000, 4738381338321616896, 30129469486639681536, 149587343098087735296, 614787626176508399616, 2176782336000000000000
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..2000
- Index entries for linear recurrences with constant coefficients, signature (13, -78, 286, -715, 1287, -1716, 1716, -1287, 715, -286, 78, -13, 1).
Programs
-
Magma
[(6*n)^12: n in [0..25]]; // Vincenzo Librandi, May 03 2011
-
Mathematica
(6*Range[0,20])^12 (* or *) LinearRecurrence[{13,-78,286,-715,1287,-1716,1716,-1287,715,-286,78,-13,1},{0,2176782336,8916100448256,1156831381426176,36520347436056576,531441000000000000,4738381338321616896,30129469486639681536,149587343098087735296,614787626176508399616,2176782336000000000000,6831675453247426400256,19408409961765342806016},20] (* Harvey P. Dale, Mar 17 2019 *)