I have an arbitrary long list that looks as following: {a,b,c,d,e,f}
Now I would like to create ordered combinations in this list that need to have a length of 3, 4 or 5. To clarify, ordered combinations of length 3 are: {(a,b,c), ((b,c,d), (c,d,e), (d,e,f)} and length 4 are {(a,b,c,d), (b,c,d,e), (c,d,e,f)} and at last we obtain {(a,b,c,d,e), (b,c,d,e,f)} for length 5. The amount of elements in these three created lists is equal to 4+3+2.
If I wouldn't have set this restriction, all ordered pairs would have the length of n+n-1 ... 1+0 (with n being the length of the original list).
Now the question that I have is:
How could I express these restricted combinations (from length 3,4 or 5) of a list in mathematical terms? And does this have a name?
Thanks in advance, any help is appreciated.