I have tried searching online for the answer and can't quite get one for my specific problem. My use of terminology is probably not helping (I don't study math). I think I know the answer but would like confirmation and possibly someone to point me to a website online/code/or technique that could achieve this.
I want to find each unique order of numbers from 1 to 12, out of all possible combinations. So, 12! means I can have a very large number of combinations. What I want to get are the ones that are completely unique to one another, i.e., they do not have any numbers that follow the same series in the set. For example,
1,2,3,4,5,6,7,8,9,10,11,12
2,4,6,8,10,12,1,3,5,7,9,11
3,6,9,12,2,5,8,11,1,4,7,10
4,8,12,2,6,10,3,7,11,1,5,9
All of these numbers are different permutations of the same series (1-12) but if you look at the second last two 1 follows from 11, in both cases. I want to avoid all instance of this.
If my thinking is correct (but please tell me if I'm wrong) out of all possible permutations, there will only be 12 sets of numbers that meet my requirements. As you'll know 12! is a very big number, I'm finding it challenging to write out the 12. I tried thinking of a systematic way to change how I write it out but I found a couple times there would be somewhere that repeated a small sequence (as above), I suspect my approach was slightly flawed and I need to change how I counted. I tried counting along by the value of first number in each row. So first row by 1, second by 2, and so on. I think it went wrong when I reached my maximum number (12) and had to got to the start of the series with the numbers left.
What I want to know is: 1. Am I correct in thinking there will only be 12 sets of numbers that meet what I'm looking for, and 2. is there anywhere online I can type the number to get those back/or maybe there is a technique to do it by hand like I tried.
Thanks
Here's one set of "completely" unique permutations $f_1, f_2, \ldots f_{12}$:
$$ f_n(x) = n\cdot x \bmod 13 $$
So we have:
This only works because $12+1$ is a prime number, however.
For example, there is no set of 3 "completely unique" permutations of $\{1,2,3\}$. At most one of the permutations 123, 231, and 312 can appear, and at most one of the permutations 321, 213, and 132 can appear. But together these are all the possible permutations of $\{1,2,3\}$ so there's nowhere to get a third "completely unique" one from.