login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A071779
Smallest k > n such that F(n) + F(i) divides F(k) + F(i) 1<=i<=n and where F(n) are the Fibonacci numbers.
0
2, 4, 21, 64, 235, 846, 1673, 5048, 191511, 55450, 776149
OFFSET
1,1
COMMENTS
Next term, if it exists, is greater than 3000000. - Ryan Propper, Sep 16 2005
PROG
(PARI) for(n=1, 8, s=n+1; while(sum(i=1, n, (fibonacci(s)+fibonacci(i))%(fibonacci(n)+fibonacci(i)))>0, s++); print1(s, ", "))
CROSSREFS
Sequence in context: A122736 A296276 A092458 * A107388 A233289 A296282
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Jun 04 2002
EXTENSIONS
3 more terms from Ryan Propper, Sep 16 2005
STATUS
approved