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.

A092326 Permanent of the inverse of the n-th Hilbert matrix divided by the determinant of the inverse of the n-th Hilbert matrix.

Original entry on oeis.org

1, 7, 647, 878769, 18203480001, 5850859031888599, 29453515169174062608487, 2335404534493957255219087217249, 2927451248337363113001580852250754885313
Offset: 1

Views

Author

Robert G. Wilson v, Jan 30 2004

Keywords

Crossrefs

Cf. A061914.

Programs

  • 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]/Det[i]]; Table[ f[n], {n, 1, 10}]