|
| |
|
|
A062381
|
|
Let A_n be the n X n matrix defined by A_n[i,j] = 1/F(i+j-1) for 1<=i,j<=n where F(k) is the k-th Fibonacci number (A000045). Then a_n = 1/det(A_n).
|
|
7
| |
|
|
1, -2, -360, 16848000, 1897448716800000, -3129723891582775706419200000, -541942196790147039091108680776954796441600000, 66373536294235576434745706427960099542896427384297349714149376000000
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| In the reference it is proved that not only det(A_n) is a reciprocal of an integer but the inverse matrix (A_n)^(-1) is an integer matrix.
|
|
|
LINKS
| T. M. Richardson, The Filbert Matrix, arXiv:math/9905079
|
|
|
FORMULA
| a(n) = s(n) * f(n) / h(n)^2, where s(n) = (-1)^Floor[n/2], f(n) = Product[Fibonacci[k]^(n-Abs[k-n]),{k,1,2*n-1}], h(n) = Product[Product[Fibonacci[k],{k,1,m-1}],{m,1,n}]. - Alexander Adamchuk (alex(AT)kolmogorov.com), May 18 2006
|
|
|
EXAMPLE
| a(3) = -360 because the matrix is / 1,1,1/2 / 1,1/2, 1/3 / 1/2, 1/3, 1/5 / with determinant -1/360.
|
|
|
MATHEMATICA
| Table[(-1)^Floor[n/2]*Product[Fibonacci[k]^(n-Abs[k-n]), {k, 1, 2*n-1}], {n, 1, 10}]/Table[Product[Product[Fibonacci[k], {k, 1, m-1}], {m, 1, n}], {n, 1, 10}]^2 - Alexander Adamchuk (alex(AT)kolmogorov.com), May 18 2006
|
|
|
CROSSREFS
| Cf. A000045, A010048.
Cf. A003266.
Sequence in context: A187523 A172860 A164700 * A077350 A013506 A013512
Adjacent sequences: A062378 A062379 A062380 * A062382 A062383 A062384
|
|
|
KEYWORD
| sign,nice
|
|
|
AUTHOR
| Ahmed Fares (ahmedfares(AT)my-deja.com), Jul 08 2001
|
|
|
EXTENSIONS
| More terms from Vladeta Jovovic (vladeta(AT)eunet.rs), Jul 11 2001
|
| |
|
|