Let's recall the Fibonacci-like sequence from my previous blog post titled There Can Be Only One 1.
We start with a digit \(d\) between 0 and 9 and any integer \(s\) that does not contain \(d\). For example, 1and 2 would be suitable. After that we begin the Fibonacci process using \(d\) and \(s\) as our seeds except that whenever a number appears containing one or more digits \(d\), they are all removed.
In my previous post, I looked at three scenarios:
- \(d=1\) and \(s=2\)
- \(d=1\) and \(s=24\)
- \(d=1\) and \(s=70\)
Starting Parameters: Forbidden Digit = 2, Second Number = 5Max Value Limit: 40000--------------------------------------------------Resulting Sequence (17 terms):[2, 5, 7, 1, 8, 9, 17, 6, 3, 9, 1, 10, 11, 1, 1, 0, 1]--------------------------------------------------Conclusion: The sequence entered a continuous loop.The repeating pair that triggered the stop was: (0, 1)
![]() |
Figure 2: permalink |





