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.

A189765 Triangle in which row n has the n(n+1)/2 elements of the lower triangular part of the inverse of the n-th order Hilbert matrix.

This page as a plain text file.
%I A189765 #18 Feb 16 2025 08:33:14
%S A189765 1,4,-6,12,9,-36,192,30,-180,180,16,-120,1200,240,-2700,6480,-140,
%T A189765 1680,-4200,2800,25,-300,4800,1050,-18900,79380,-1400,26880,-117600,
%U A189765 179200,630,-12600,56700,-88200,44100,36,-630,14700,3360,-88200,564480,-7560,211680
%N A189765 Triangle in which row n has the n(n+1)/2 elements of the lower triangular part of the inverse of the n-th order Hilbert matrix.
%C A189765 The n-th order Hilbert matrix has elements h(i,j) = 1/(i+j-1) for 1 <= i,j <=n. Only the lower triangular matrix is shown because the Hilbert matrix and its inverse are symmetric. The n-th row begins with n^2 and ends with A000515(n+1).
%C A189765 The sums of select rows of the inverse matrix are sequences A002457, A002736, A002738, A007531, and A054559.
%C A189765 The largest magnitude in the matrix is A210356(n). - T. D. Noe, Mar 28 2012
%C A189765 The sum of the elements of the n-th matrix is n^2. - T. D. Noe, Apr 02 2012
%H A189765 T. D. Noe, <a href="/A189765/b189765.txt">Rows n = 1..25, flattened</a>
%H A189765 Eric W. Weisstein, <a href="https://mathworld.wolfram.com/HilbertMatrix.html">MathWorld: Hilbert Matrix</a>
%F A189765 a(n,i,j) = (-1)^(i+j) (i+j-1) binomial(n+i-1, n-j) binomial(n+j-1, n-i) binomial(i+j-2, i-1)^2 is the (i,j) element of the inverse of the n-th Hilbert matrix.
%e A189765 Row 3 is 9, -36, 192, 30, -180, 180 which corresponds to the inverse
%e A189765   9  -36   30
%e A189765 -36  192 -180
%e A189765 30 -180  180
%t A189765 lowerTri[m_List] := Module[{n = Length[m]}, Flatten[Table[Take[m[[i]], i], {i, n}]]]; Flatten[Table[lowerTri[Inverse[HilbertMatrix[n]]], {n, 6}]]
%Y A189765 Cf. A002457, A002736, A002738, A005249 (determinant), A007531, A054559, A189766 (trace).
%K A189765 sign,tabf
%O A189765 1,2
%A A189765 _T. D. Noe_, May 02 2011