A060841 Numerator of 1/det(M) where M is the n X n matrix with M[i,j] = 1/lcm(i,j).
1, 4, 18, 144, 900, 16200, 132300, 2116800, 28576800, 714420000, 8644482000, 311201352000, 4382752374000, 143169910884000, 4026653743612500, 128852919795600000, 2327405863808025000, 125679916645633350000
Offset: 1
Examples
a(2) = 4 because the matrix M is [1,1/2; 1/2,1/2] and det(M) = 1/4.
Links
- Robert G. Wilson v, Table of n, a(n) for n = 1..400
Programs
-
Mathematica
d[n_] := Denominator[ Det[ Table[ GCD[1/i, 1/j], {i, n}, {j, n}]]; Array[d, 18]] (* Robert G. Wilson v, Aug 02 2015 *)
-
PARI
vector(20, n, numerator(1/matdet(matrix(n, n, i, j, 1/lcm(i,j))))) \\ Michel Marcus, Aug 03 2015
Formula
a(n) = (n!)^2 / (phi(1)*phi(2)*...*phi(n)) = (n!)^2 / A001088(n).
Extensions
More terms from Reiner Martin, May 17 2001
Comments