Let $a>b$ be positive integers. Is there a Fibonacci number that is $b$ modulo $a$?
We know that the Fibonacci numbers are periodic modulo $a$. Indeed, consider pairs $(F_i,F_{i+1})$ modulo $a$. There can only be finitely (around $a^2$) such pairs. So some two pairs coincide. Once we have that, we also have periodicity backward/forward. But it's still not clear for which $a,b$ we'll have $F_i\equiv b\pmod a$.
I used the following lua code to generate all the possible values of a and b where a > b up to 100. Then, show the result of b modulo a. The results are here (please note that in the results, the percentage sign is used as the modulo operator). Below is the code i used to generate it. (the .. is the concatenation operator (joins 2 pieces of text together))
And, here is the code I used to check to make sure a > b is always true for the numbers generated by the code in the previous (above) paragrah. Even thou this code doesn't use any external variables so it will always display the same output, you can still check it again if you want using this code. Just enter the code into a lua compiler and if there are any times when a < b then it will show you the value of a and of b.
Then, we want to know what the total number of possible values for a and b are when a or b are no more than 100. So, i modified the coding a little bit, and found that the total possible values for a and b up to 100 is $5050$. The code I used to find it is as follows.
Next, to check for Fibonacci numbers. All Fibonacci numbers ( not Fibonacci sequence ) less than or equal to 100 are: 0, 1, 2, 3, 5, 8, 13, 21, 34, 55, and 89. Thus, I created a lua program to figure out which b modulo a are Fibonacci. The results are here. The total amount of Fibonacci numbers found is 986 ( $19.\overline{5247}$% of the total numbers tested ). The following is the code I used.
All-In-All, yes, because there are tons of Fibonacci numbers that are b modulo a ( and even a modulo b ) just in the first 100 values of a and b numbers alone.
In a related topic, I just switched it around a little bit to see a modulo b up to 100 where a > b. The result is here. The following is the code I used.
Then, pulling the Fibonacci numbers out of that was just another simple program. The results can be found here. The total matches is 2399 ( almost half - $ 47.\overline{5049} $% ). The following is the code I used to generate it.