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.

A307991 Fibonacci numbers of the form k^2 - k - 1 with integer k.

Original entry on oeis.org

1, 5, 55, 89
Offset: 1

Views

Author

Amiram Eldar, May 09 2019

Keywords

Comments

The corresponding values of k are 2, 3, 8, 10.
Intersection of A000045 and A028387.
Also Fibonacci numbers whose reciprocals equal to Sum_{i>=1} F(i)/k^(i+1), where F(i) is the i-th Fibonacci number.
de Weger proved that there are no other terms.

Examples

			89 is in the sequence since 89 = 10^2 - 10 - 1 or equivalently 1/89 = 1/10^2 + 1/10^3 + 2/10^4 + 3/10^5 + 5/10^6 + ... This is why the first digits of the decimal expansion of 1/89 = 0.011235... are the first terms of the Fibonacci sequence.
		

References

  • Fenton Stancliff, A curious property of a_11, Scripta Math., Vol. 19 (1953), p. 126.

Crossrefs

Programs

  • Mathematica
    Select[Fibonacci[Range[2, 20]], IntegerQ[Sqrt[4# + 5]] &]