Let's recall the Fibonacci-like sequence from my previous two blog posts titled There Can Be Only One 1 and There Can Only Be One 2.
We start with a digit \(d\) between 0 and 9 and any integer \(s\) that does not contain \(d\). For example, 1 and 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.
So far I've looked at:
- \(d=1\) and \(s=2\) leading to a sequence that loops
- \(d=1\) and \(s=24\) leading to a sequence that loops
- \(d=1\) and \(s=70\) leading to a sequence that loops
- \(d=2\) and \(s=1\) leading to sequence that is probably unbounded
- \(d=2\) and \(s=5\) leading to a sequence that loops
![]() |
Figure 1: permalink |
Once we set \(s=2\) and maintain \(d=3\), we get a longer sequence but it eventually loops. Here is the trajectory and Figure 2 shows the graph:
![]() |
Figure 2: permalink |
![]() |
Figure 3: permalink |








