A247937 Least integer m > n such that m + n divides F(m) + F(n), where F(k) refers to the Fibonacci number A000045(k).
5, 22, 9, 8, 8, 18, 10, 16, 21, 14, 35, 24, 17, 34, 21, 32, 20, 30, 31, 28, 87, 26, 47, 36, 28, 46, 63, 32, 80, 42, 151, 40, 75, 38, 38, 60, 113, 39, 51, 56, 109, 49, 307, 52, 63, 50, 50, 72, 101, 70, 57, 68, 97, 66, 58, 64, 93, 62, 191, 84
Offset: 1
Keywords
Examples
a(2) = 22 since 22 + 2 = 24 divides F(22) + F(2) = 17711 + 1 = 17712 = 24*738.
Links
- Zhi-Wei Sun, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Do[m=n+1;Label[aa];If[Mod[Fibonacci[m]+Fibonacci[n],m+n]==0,Print[n," ",m];Goto[bb]];m=m+1;Goto[aa];Label[bb];Continue,{n,1,60}]
Comments