|
Search: id:A059332
|
|
|
| A059332 |
|
Determinant of n X n matrix A defined by A[i,j] = (i+j-1)! for 1 <= i,j <= n. |
|
+0 1
|
|
| 1, 2, 24, 3456, 9953280, 859963392000, 3120635156889600000, 634153008009974906880000000, 9278496603801318870491332608000000000, 12218100099725239100847669366019325952000000000000
(list; graph; listen)
|
|
|
OFFSET
|
0,2
|
|
|
FORMULA
|
a(n) = a(n-1)*(n!)*(n-1)! for n >= 2 so a(n) = product k=1, 2, ..., n k!*(k-1)!
|
|
EXAMPLE
|
a(4) = 3456 because the relevant matrix is {1 2 6 24 / 2 6 24 120 / 6 24 120 720 / 24 120 720 5040 } and the determinant is 3456.
|
|
MAPLE
|
with(linalg): Digits := 500: A059332 := proc(n) local A, i, j: A := array(1..n, 1..n): for i from 1 to n do for j from 1 to n do A[i, j] := (i+j-1)! od: od: RETURN(det(A)) end: for n from 1 to 20 do printf(`%d, `, A059332(n)) od;
|
|
CROSSREFS
|
Cf. A010790.
Adjacent sequences: A059329 A059330 A059331 this_sequence A059333 A059334 A059335
Sequence in context: A111428 A111429 A111430 this_sequence A000794 A088912 A055462
|
|
KEYWORD
|
nonn,easy
|
|
AUTHOR
|
Noam Katz (noamkj(AT)hotmail.com), Jan 26 2001
|
|
EXTENSIONS
|
More terms from James A. Sellers (sellersj(AT)math.psu.edu), Jan 29 2001
|
|
|
Search completed in 0.002 seconds
|