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

A069644
Let M_n be the n X n matrix with M_n(i,j)=1/(i+j+5); then a(n)=1/det(M_n).
0
7, 4032, 89812800, 56510213760000, 849349360466006400000, 275486641731816152769331200000, 1803836893978771496626439330581708800000, 227637647167687849779974528677945404209233920000000, 535361773557812808743387755473014006489270247399358464000000000
OFFSET
1,1
MATHEMATICA
Table[Denominator[Det[Table[1/(i+j+5), {i, n}, {j, n}]]], {n, 10}] (* Harvey P. Dale, Dec 15 2018 *)
PROG
(PARI) for(n=1, 10, print1(1/matdet(matrix(n, n, i, j, 1/(i+j+5))), ", "))
CROSSREFS
Sequence in context: A052496 A216935 A024100 * A203679 A145696 A361452
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Apr 21 2002
EXTENSIONS
More terms from Harvey P. Dale, Dec 15 2018
STATUS
approved