A109354 a(n) = 6^((n^2 - n)/2).
1, 1, 6, 216, 46656, 60466176, 470184984576, 21936950640377856, 6140942214464815497216, 10314424798490535546171949056, 103945637534048876111514866313854976, 6285195213566005335561053533150026217291776, 2280250319867037997421842330085227917956272625811456
Offset: 0
Keywords
Links
- Andrew Howroyd, Table of n, a(n) for n = 0..50
Programs
-
Mathematica
Table[6^((n^2-n)/2),{n,0,10}] (* Harvey P. Dale, May 28 2013 *)
-
PARI
a(n) = 6^((n^2 - n)/2); \\ Michel Marcus, Apr 12 2019
Formula
a(n+1) is the determinant of n X n matrix M_(i, j) = binomial(6i, j).
G.f. A(x) satisfies: A(x) = 1 + x * A(6*x). - Ilya Gutkovskiy, Jun 04 2020
Extensions
Terms a(11) and beyond from Andrew Howroyd, Jan 02 2020
Comments