Using mathematical induction, I was trying to prove that consecutive Fibonacci series numbers are coprime(or relatively prime). It is a ubiquitous topic and there are many elegant proofs regarding this. Still, I tried to prove it because I am still new to the topic of mathematical induction and am trying to get better at it. So, here's how I went about it
Let $f(n)$ be the nth term of the Fibonacci series. I am taking $f(3)$ as the base case.
$f(3) =2$ which is coprime with $f(2)$. Hence, our base case is true.
Now, let us assume that it is true for $f(k)$ where $k ∈ [3,n]$
$f(n+1) = f(n) + f(n-1)$
Now $f(n)$ and $f(n-1)$ are coprime(Our assumption).
Hence $f(n+1)$ is a coprime and hence it is true that consecutive numbers in the Fibonacci series are coprimes
Now, this led to an interesting observation: at least three consecutive numbers in the Fibonacci series are always coprime. So, I manually wrote out some terms of the Fibonacci series and it got me wondering: What is the maximum number of consecutive numbers in the Fibonacci series which are coprime?
Since I couldn't think of a way how to go about it, I tried to go manually and get a feel for it. I haven't done many terms but for now, the upper limit seems to be 5(the first $5$ numbers: 1,1,2,3,5 and another one thanks to lulu is 233, 377, 610,987 and 1597).
So, is $5$ the limit or can we do better than that?