cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A111194 Permanent of the inverse Hilbert matrix.

Original entry on oeis.org

1, 1, 84, 1397520, 5314794912000, 4855173934730716800000, 1090093558153665322315192780800000, 60907190511553979457004412118419080463155200000
Offset: 0

Views

Author

Roger Hui, Oct 22 2005

Keywords

Crossrefs

Cf. A005249 = determinant of inverse Hilbert matrix; and A092326 = (permanent/determinant) of inverse Hilbert matrix.

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 *)