In the game of tetris you are guaranteed to get each of the 7 unique pieces in some random order. For this we will call them abcdefg. This would give us 7! or 5040 unique starts.
However, there is also a "hold feature", which will swap the current piece out with one that has been previously held, or with none the first time swapped.
Given this, (using only 4 pieces to simplify), if we have the sequence abcd, we can create the sequences bacb, bcad, bcda, badc, .... through different uses of holding.
Is there a way to generate a set of all possible starts such that no members of the set can be made from another? Is this the same set as a set of all starts that can be used to generate all 5040 sets? Is there a name for this kind of set?