|
| |
|
|
A118714
|
|
Determinant of n X n matrix whose diagonal are the first n tetrahedral numbers and all other elements are 1's.
|
|
0
| |
|
|
1, 3, 27, 513, 17442, 959310, 79622730, 9475104870, 1553917198680, 340307866510920, 96987741955612200, 35206550329887228600, 15983773849768801784400, 8934929582020760197479600
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| a(n+2) / a(n+1) = A062748(n) = A062745(n+2, 3)= binomial(n+4, 3)-1 = (n+1)*(n^2+8*n+18)/3!.
|
|
|
FORMULA
| a(n) = Det[ DiagonalMatrix[ Table[ i*(i+1)(i+2)/6 - 1, {i, 1, n} ] ] + 1 ]. a(n) = Product[(j-3)*(j^2+2)/3!,{j,4,n+2}]. a(n) = Product[(k+1)*(k^2+8*k+18)/3!,{k,0,n-2}] = Product[A062748(k),{k,0,n-2}].
|
|
|
EXAMPLE
| The matrix begins:
1 1 1 1 1 1 1 ...
1 4 1 1 1 1 1 ...
1 1 10 1 1 1 1 ...
1 1 1 20 1 1 1 ...
1 1 1 1 35 1 1 ...
1 1 1 1 1 56 1 ...
|
|
|
MATHEMATICA
| Table[ Det[ DiagonalMatrix[ Table[ i*(i+1)(i+2)/6 - 1, {i, 1, n} ] ] + 1 ], {n, 1, 20} ]. Table[Product[(k-3)*(k^2+2)/3!, {k, 4, n+2}], {n, 1, 20}]
|
|
|
CROSSREFS
| Cf. A000292, A067550, A062748, A062745.
Sequence in context: A193541 A193544 A111844 * A089506 A062496 A185237
Adjacent sequences: A118711 A118712 A118713 * A118715 A118716 A118717
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Alexander Adamchuk (alex(AT)kolmogorov.com), May 20 2006
|
| |
|
|