OFFSET
1,1
COMMENTS
The concept of this sequence is based on a web where every possible connection in the web is made with the numbers written so far, and then new numbers are added for every connection that needs to be made.
EXAMPLE
Start with a map of nothing but 1.
1 has 0 connections.
So we add 2 and connect it.
1 has 1 connection (2)
2 has 1 connection (1)
Now we need one more number to connect with 2, so we add 3.
2 has 2 connections (1,3)
3 has 1 connection (2)
Now because 3 needs two more numbers, we add 4 and 5 at once, and make as many connections as possible.
3 has 3 connections (2,4,5)
4 has 2 connections (3,5)
5 has 2 connections (3,4)
We need five more numbers because 4 lacks two connections, and 5 lacks three connections, so we add 6,7,8,9,10.
4 has 4 connections (3,5,6,7)
5 has 5 connections (3,4,8,9,10)
6 has 5 connections (4,7,8,9,10)
7 has 5 connections (4,6,8,9,10)
8 has 5 connections (5,6,7,9,10)
9 has 5 connections (5,6,7,8,10)
10 has 5 connections (5,6,7,8,9)
This continues indefinitely.
CROSSREFS
KEYWORD
nonn
AUTHOR
Aidan Clarke, Nov 18 2020
STATUS
approved