A344661 Integers k such that k^2 is the sum of two Fibonacci numbers.
0, 1, 2, 3, 4, 6, 12, 40, 3864
Offset: 1
Examples
These square sums of Fibonacci numbers correspond to: 0^2 = F(0) + F(0); 1^2 = F(1) + F(0) = F(2) + F(0); 2^2 = F(4) + F(1) = F(4) + F(2) = F(3) + F(3); 3^2 = F(6) + F(1) = F(6) + F(2); 4^2 = F(7) + F(4) = F(6) + F(6); 6^2 = F(9) + F(3); 12^2 = F(11) + F(10) = F(12) + F(0); 40^2 = F(17) + F(4); 3864^2 = F(36) + F(12).
Links
- F. Luca and V. Patel, On perfect powers that are sums of two Fibonacci numbers, J. Number Theory, 189:90-96, 2018.
Comments