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.

A069651 For n >= 1, let M_n be the n X n matrix with M_n(i,j) = i^2/(i+j); then a(n) = 1/det(M_n). Also, a(0) = 1 by convention.

This page as a plain text file.
%I A069651 #22 Aug 23 2019 22:45:44
%S A069651 1,2,18,1200,735000,4667544000,332086420512000,279394363051195392000,
%T A069651 2892376010829659126572800000,379850021025259936655866602240000000,
%U A069651 648304836222110631242066578424390188032000000
%N A069651 For n >= 1, let M_n be the n X n matrix with M_n(i,j) = i^2/(i+j); then a(n) = 1/det(M_n). Also, a(0) = 1 by convention.
%C A069651 Also, determinant of the inverse of the (n+1)-st Hilbert matrix, divided by (2n+1)!. - _Robert G. Wilson v_, Feb 02 2004
%C A069651 Also, inverse of determinant of the matrix M_n(i,j) = i*j/(i+j). - _Harry Richman_, Aug 19 2019
%F A069651 a(n) = A005249(n)/A000142(n). - _Robert G. Wilson v_, Feb 02 2004
%F A069651 a(n) = (n+1)!/(2*n+1)! * Product[Binomial(i,Floor(i/2)), {i,1,2*n+1}]. - _Stefan Steinerberger_, Feb 26 2008
%F A069651 a(n) = A163085(2*n+1)/(2*n+1)! = A163085(2*n)/factorial(n)^2. - _Peter Luschny_, Sep 18 2012
%t A069651 Table[1/((2n - 1)!Det[Table[1/(i + j - 1), {i, n}, {j, n}]]), {n, 10}] (* _Robert G. Wilson v_, Feb 02 2004 *)
%t A069651 Table[(n + 1)!/(2*n + 1)!*Product[Binomial[i, Floor[i/2]], {i, 1, 2*n + 1}], {n, 0, 10}] (* _Stefan Steinerberger_, Feb 26 2008 *)
%o A069651 (PARI) for(n=1,15,print1(1/matdet(matrix(n,n,i,j,i^2/(j+i))),","))
%o A069651 (Sage)
%o A069651 def A069651(n): return A163085(2*n+1)/factorial(2*n+1)
%o A069651 [A069651(n) for n in (0..10)] # _Peter Luschny_, Sep 18 2012
%Y A069651 Cf. A000142, A005249, A163085.
%K A069651 easy,nonn
%O A069651 0,2
%A A069651 _Benoit Cloitre_, Apr 21 2002
%E A069651 Edited by _N. J. A. Sloane_, Feb 25 2008