I was following down a rabbit hole of math when I came up with a sorting algorithm. I try looking around the internet to see if anyone has come up with the same thing. It doesn't seem like it was the case (if anyone can prove me wrong, please tell me). I think I will call it anti-bogosort. The sorting algorithm is a variation on bogosort but with a twist. Whenever you randomize the list, every item is in a different place than before.
Take the sorted list $\{1, 2, 3, 4, 5\}$. The randomization will require that every item is in a different location than it is now, so $\{2, 5, 3, 4, 1\}$ is not a valid randomization.
A key observation I noticed is that the list may only have the chance to become sorted if all items are in the wrong spot. If just one of them were to be correctly placed, it would not be able to be in the same spot again. This might change how different it is from normal bogosort. All I know for sure is that it is less efficient. This isn't my area of expertise, so if anyone could take a crack at it, be my guest.