Hello all!
Since the lower bound is being recalcitrant, I thought it might make a change to have a look at the upper bound again.
I found a way to do a reasonably quick search for superpermutations that have the known structure, i.e. a single 3-cycle with the rest of the 2-cycles attached as a tree.
The idea is to encode it as an exact cover problem, where the elements are 1-cycles and each covering set is a 2-cycle missing a single 1-cycle, and search for solutions using the Dancing Links algorithm popularised by Don Knuth. I assume the tree is rooted at the 3-cycle that begins 123456, and exclude covering sets that intersect this.
Not every solution to the exact cover problem represents a superpermutation of the form we’re looking for, because the partial 2-cycles can make loops, but every superpermutation of the form we’re looking for is a solution of the exact cover problem. So we can enumerate the solutions to the exact cover problem, and discard the solutions that contain loops of partial 2-cycles, to get a comprehensive list of these superpermutations.
I’m currently running with n=7 to see if I can find a superpermutation of this form for n=7. I have no idea whether this is likely to finish within a reasonable time.
Another thing one might try is to adapt the search to look for superpermutations with a different structure, that if they exist would be shorter than 872 characters. It should be possible to rule out many possibilities in this way, though I fear we will need a better understanding of the range of structures that are possible before we can be sure we have exhausted the possibilities and can conclude an actual lower bound, even for n=6.
Best wishes,
Robin