OFFSET
1,2
COMMENTS
F(n) denotes the n-th Fibonacci number. I believe a(n) exists for all n > 0.
PROG
(PARI)
a(n)=m=1; while((fibonacci(n)^2+fibonacci(m)^2)%(m+n), m++); m
vector(100, n, a(n))
CROSSREFS
KEYWORD
nonn
AUTHOR
Derek Orr, Sep 29 2014
STATUS
approved