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.

Showing 1-2 of 2 results.

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

A111237 LCM of the absolute values of the inverse Hilbert matrix.

Original entry on oeis.org

1, 12, 2880, 226800, 101606400, 6985440000, 35961045120000, 1431699108840000, 692306057963520000, 181128033944995737600, 344143264495491901440000, 6651046563131624734080000, 22028266217091941119272960000
Offset: 1

Views

Author

Roger Hui, Oct 28 2005

Keywords

Crossrefs

Cf. A005249 (determinant), A111194 (permanent), A092326 (permanent/determinant).

Programs

  • J
    NB. http://www.jsoftware.com
    H=: % @: >: @: (+/~) @: i. @: x:
    *./ @: | @:, @: %. @: H n
Showing 1-2 of 2 results.