Given some permutation P of {1,2,3... N} we want to permute always by the same rule. What can be the largest K (number of permutation steps done) to obtain starting sequence?
Eg. If we do 1->2, 2->3, 3->4 ... N->1, K will be N (as it is the number of how many permutations we need to do to obtain the starting sequence). But this example is just easy. We can have much more intricate and complicated permutations, and I just actually want to find the "most complicated" one (and how much will be K in terms of size of sequence N).
Thanks!