In a regular, positional number system (like our decimal numbers), every rational number ends in a repeating sequence (even if it's just 0). For example, 1/3 in base 10 is 0.33333..., in base 5 it's 0.131313..., and in base 3 it's just 0.1.
A less common number system uses the Fibonacci sequence as its base, so the first few digit places represent 1, 2, 3, 5, 8, 13, 21, and so on (instead of the decimal 1, 10, 100, 1000, etc.).
After the radix point (what we'd call a decimal point), it works the same way: $0.1_F = \frac{1}{2}$, $0.01_F = \frac{1}{3}$, $0.001_F = \frac{1}{5}$, and so on. Numbers that are the sum of these are easy:
$$ \begin{aligned} \frac{5}{6} &= 0.11_F \\ \frac{7}{10} &= 0.101_F \end{aligned} $$
But what about $\frac{1}{4}$? Greedily adding up the first places that are smaller than the remainder of $\frac{1}{4}$, it turns out to be:
$$\frac{1}{4} = \frac{1}{5}+\frac{1}{21}+\frac{1}{610}+\frac{1}{1597}... = 0.001001000000101..._F$$
Does the Fibonacci coding of $\frac{1}{4}$ ever repeat?
(If you can answer this question, you might be able to answer a more general question: whether or not all rationals eventually repeat in Fibonacci coding.)