A109966 a(n) = 8^((n^2-n)/2).
1, 1, 8, 512, 262144, 1073741824, 35184372088832, 9223372036854775808, 19342813113834066795298816, 324518553658426726783156020576256, 43556142965880123323311949751266331066368, 46768052394588893382517914646921056628989841375232, 401734511064747568885490523085290650630550748445698208825344
Offset: 0
Programs
-
Magma
[2^(3*Binomial(n,2)): n in [0..10]]; // G. C. Greubel, Feb 05 2018
-
Mathematica
Table[2^(3*Binomial[n,2]),{n,0,10}] (* Geoffrey Critzer, Nov 10 2011 *)
-
PARI
a(n)=8^binomial(n,2) \\ Charles R Greathouse IV, Jan 17 2012
Formula
a(n+1) is the determinant of n X n matrix M_(i, j) = binomial(8i, j).
Hankel transform of A059435. - Philippe Deléham, Sep 03 2006
Extensions
a(10) corrected and a(11), a(12) from Georg Fischer, Apr 01 2022
Comments