A111194 Permanent of the inverse Hilbert matrix.
1, 1, 84, 1397520, 5314794912000, 4855173934730716800000, 1090093558153665322315192780800000, 60907190511553979457004412118419080463155200000
Offset: 0
Keywords
Crossrefs
Programs
-
J
NB. www.jsoftware.com H =: % @: >: @: (+/~) @: i. @ x: perm=: +/ .* perm@%.@H n
-
Mathematica
Permanent[m_List] := With[{v = Array[x, Length[m]]}, Coefficient[Times @@ (m . v), Times @@ v]]; f[n_] := Block[{i = Inverse[Table[1/(i + j - 1), {i, n}, {j, n}]]}, Permanent[i]]; Table[ f[n], {n, 7}] (* Robert G. Wilson v, Oct 24 2005 *)