Or more importantly, does it have a name?
The function f(k)=x I have found goes under these rules,
- There is a group of n strings containing k characters
- Each string is 1 character longer than the last. Ex: 1, 22, 333...
- Every string cannot contain the strings before it
- Characters cannot be repeated more than 3 times in a row
- x is the highest possible n that can have a group following these rules
From this I can find
f(1)=1
[1]
f(2)=2
[1, 22]
f(3)=4
[1, 32, 333, 2223]
What do f(4), f(5), f(6) equal?
I don't know how I would calculate this.