Let's assume that we have a number sequence which starts as
1# -1 2 3 4 5 6 7 8 9
2# -1 2 3 4 5 6 7 9 8
3# -1 2 3 4 5 6 8 7 9
n# -9 8 7 6 5 4 3 2 1
There could be approximately 3000 such occurrences in between, What would be the pattern to generate these numbers...
Regards!