The well-known Fibonacci Sequence is generated by the simple recursive formula
\( F_i =
\begin{cases}
1 , & \text{i=1} \\
1 , & \text{i=2} \\
F_{i-1}+F_{i-2} , & \text{i>2}
\end{cases} \).
The first few terms are
1,1,2,3,5,8,13,21,….
Of course, choosing 1 and 1 as the first two terms is rather arbitrary, so let's replace them by general natural numbers a and b. Then, we get the recursive definition
Fi,a,b=⎩⎪⎨⎪⎧a,b,Fi−1,a,b+Fi−2,a,b,i=1i=2i>2.
The Fibinacci numbers have many special properties (which have been called and used many times), but why should these properties be limited to Fibonacci numbers? If we can find other starting values a,b so that ∃i∈N(Fi,a,b=n∈N) then we can use the properties of general Fibonacci sequences to find relations involving n and maybe solve a problem.
But which numbers occur in general Fibonacci sequences?
Obviously, every number n occurs in the sequence starting with 1 and n−1 at i=3.
n=F3,1,n−1
But it also occurs in F3,2,n−1, F3,3,n−3 and so on.
n=F3,a,n−a,n−1≥a∈N
This makes a total of n sequences that contain n.
Are there more? Is there a formula or a asymptote to the number of sequences that contain n? Which n have the most occurences?
For searching Fibonacci sequences that contain n, let's sort them by index.
How many starting values a,b are there so that n=F3,a,b? We've already solved this as the number of natural numbers a so that n−a is also a natural number. There are n possible values for a.
Now, n=F4,a,b=a+2b. This is equivalent to b=2n−a which has ⌈2n⌉ solutions.
n=F5,a,b=2a+3b⇔b=3n−2a. This has ⌈6n⌉−1 solutions, unless n≡5(mod6), then it has ⌈6n⌉ solutions.
From now on, I won't write exact solutions any more but rather the asymptotic number of solutions. So, ⌈2n⌉=O(2n) and ⌈6n⌉−1=O(6n), using Big O Notation.
n=F6,a,b=3a+5b⇔b=5n−3a. This has asymptotically O(3⋅5n)=O(15n) solutions since there are about 5n naturals less than n, but only 31 of them can be reached by taking steps of size 3.
In general:
n⇔b=Fi,a,b=aFi−2,1,1+bFi−1,1,1=Fi−1,1,1n−aFi−2,1,1
There are approximately Fi−1,1,1n naturals less than n that are divisible by Fi−1,1,1, but only Fi−2,1,11 of them can be reached with steps of size Fi−3,1,1, so the equation has about
Fi−1,1,1⋅Fi−2,1,1n
solutions.
In total, for a given n, there are approximately
ni=3∑∞Fi−1,1,1⋅Fi−2,1,11=ni=1∑∞Fi⋅Fi+11≈n⋅1.773877583285133
Fibonacci-like sequences that contain n at some position.
#NumberTheory
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
Hello, can we make friends? My e-mail:552141604@qq.com. Wish to have your answers!