The start of the sequence as table for the general case:
1, m, m+1, m+2, m+3, m+4, m+5, ...
2, 1, m, m+1, m+2, m+3, m+4, ...
3, 2, 1, m, m+1, m+2, m+3, ...
4, 3, 2, 1, m, m+1, m+2, ...
5, 4, 3, 2, 1, m, m+1, ...
6, 5, 4, 3, 2, 1, m, ...
7, 6, 5, 4, 3, 2, 1, ...
...
The start of the sequence as triangle array read by rows for the general case:
1;
m,1,2;
m+1,m,1,2,3;
m+2,m+1,m,1,2,3,4;
m+3,m+2,m+1,m,1,2,3,4,5;
m+4, m+3,m+2,m+1,m,1,2,3,4,5,6;
m+5, m+4, m+3,m+2,m+1,m,1,2,3,4,5,6,7;
...
Row number r contains 2*r -1 numbers: m+r-2, m+r-1,...m,1,2,...r.
The start of the sequence as triangle array read by rows for m=3:
1;
3,1,2;
4,3,1,2,3;
5,4,3,1,2,3,4;
6,5,4,3,1,2,3,4,5;
7,6,5,4,3,1,2,3,4,5,6;
8,7,6,5,4,3,1,2,3,4,5,6,7;
...