A016914 a(n) = (6*n)^6.
0, 46656, 2985984, 34012224, 191102976, 729000000, 2176782336, 5489031744, 12230590464, 24794911296, 46656000000, 82653950016, 139314069504, 225199600704, 351298031616, 531441000000, 782757789696
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..2000
- Index entries for linear recurrences with constant coefficients, signature (7, -21, 35, -35, 21, -7, 1).
Programs
-
Magma
[(6*n)^6: n in [0..35]]; // Vincenzo Librandi, May 03 2011
-
Mathematica
(6*Range[0,20])^6 (* or *) LinearRecurrence[{7,-21,35,-35,21,-7,1},{0,46656,2985984,34012224,191102976,729000000,2176782336},20] (* Harvey P. Dale, Jan 28 2024 *)
Comments