A069741 Let M_n be the n X n matrix M_(i,j)=1/(2^i+2^j), then a(n) is the numerator of det(M_n).
1, 1, 1, 49, 2401, 113060689, 260871824431729, 9708455965188246321478801, 361304320362377236050632364626862769, 3511057522394397982450601057907077808699210592028881
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..25
Crossrefs
Cf. A069743.
Programs
-
PARI
for(n=1,70,print1(numerator(matdet(matrix(n,n,i,j,1/(2^i+2^j)))),","))
Comments