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”).

A090914
Reciprocal of (n+1)! times determinant of n X n matrix whose (i,j)-th element is 1/(i+j).
0
1, 1, 12, 1800, 3528000, 93350880000, 34157460395520000, 176018448722253096960000, 12957844528516872887046144000000, 13783997562964632581368087262085120000000
OFFSET
0,3
MATHEMATICA
Table[ 1 / Det[ Table[ 1 / (i + j), {i, 1, n}, {j, 1, n} ]]/(n + 1)!, {n, 1, 10}]
PROG
(PARI) a(n)=if(n<0, 0, 1/((n+1)!*matdet(matrix(n, n, i, j, 1/(i+j)))))
CROSSREFS
A067689/(n+1)!
Sequence in context: A145186 A160304 A013479 * A049406 A049405 A229752
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Feb 26 2004
STATUS
approved