login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A110195
a(n) = 11^((n^2-n)/2).
1
1, 1, 11, 1331, 1771561, 25937424601, 4177248169415651, 7400249944258160101211, 144209936106499234037676064081, 30912680532870672635673352936887453361, 72890483685103052142902866787761839379440139451
OFFSET
0,3
COMMENTS
Sequence given by the Hankel transform (see A001906 for definition) of A082173 = {1, 1, 12, 155, 2124, 30482, 453432, 6936799, ...}; example : det([1, 1, 12, 155; 1, 12, 155, 2124; 12, 155, 2124, 30482; 155, 2124, 30482, 453432]) = 11^6 = 1771561.
FORMULA
a(n+1) is the determinant of n X n matrix M_(i, j) = binomial(11i, j).
MATHEMATICA
Table[11^((n^2-n)/2), {n, 0, 20}] (* Harvey P. Dale, Feb 02 2012 *)
Join[{1, 1}, Table[Det[Table[Binomial[11i, j], {i, n}, {j, n}]], {n, 10}]] (* Harvey P. Dale, Apr 01 2019 *)
KEYWORD
nonn
AUTHOR
Philippe Deléham, Sep 07 2005
EXTENSIONS
a(11) from Harvey P. Dale, Feb 02 2012
STATUS
approved