The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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). 14
1, -2, -360, 16848000, 1897448716800000, -3129723891582775706419200000, -541942196790147039091108680776954796441600000, 66373536294235576434745706427960099542896427384297349714149376000000 (list; graph; refs; listen; history; text; 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 [math.RA], 1999.
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, May 18 2006
a(n) ~ (-1)^floor(n/2) * A253270 * ((1+sqrt(5))/2)^(n*(2*n^2+1)/3) / (A253267^2 * 5^(n/2) * A062073^(2*n-2)). - Vaclav Kotesovec, May 01 2015
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, May 18 2006 *)
PROG
(PARI) vector(8, n, 1/matdet(matrix(n, n, i, j, 1/fibonacci(i+j-1)))) \\ Colin Barker, May 01 2015
CROSSREFS
Sequence in context: A230688 A325629 A362476 * A077350 A013506 A013512
KEYWORD
sign,nice
AUTHOR
Ahmed Fares (ahmedfares(AT)my-deja.com), Jul 08 2001
EXTENSIONS
More terms from Vladeta Jovovic, Jul 11 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 15 14:34 EDT 2024. Contains 372540 sequences. (Running on oeis4.)