OFFSET
1,2
COMMENTS
Note that the n-th row of this triangle is constructed from right to left, starting at the column n and ending at the column 1.
Theorem 1: the middle diagonal gives A000012, the all 1's sequence.
Theorem 2: all 1's are in the middle diagonal.
For the proofs of the theorems 1 and 2 see the proofs of the theorems 1 and 2 of A274650, because this is essentially the same problem.
Conjecture 3: every column is a permutation of the positive integers.
Conjecture 4: every diagonal is a permutation of the right border which gives the positive integers.
LINKS
Alois P. Heinz, Rows n = 1..201, flattened
FORMULA
T(n,k) = A288530(n-1,k-1) + 1.
T(n,n) = n.
EXAMPLE
Note that every row of the triangle is constructed from right to left, so the sequence is 1, 2, 3, 3, 1, 4,... (see below):
1,
3, 2,
4, 1, 3,
6, 5, 2, 4,
2, 3, 1, 6, 5, Every row is constructed
8, 7, 5, 2, 4, 6, <--- from right to left.
10, 9, 4, 1, 3, 5, 7,
7, 11, 6, 5, 2, 10, 9, 8,
12, 10, 8, 3, 1, 4, 6, 7, 9,
5, 4, 13, 9, 7, 3, 12, 11, 8, 10,
16, 6, 15, 14, 13, 1, 8, 9, 7, 12, 11,
14, 13, 17, 16, 9, 7, 2, 6, 11, 8, 10, 12,
17, 15, 14, 8, 6, 12, 1, 4, 10, 7, 9, 11, 13,
...
The triangle may be reformatted as an isosceles triangle so that the all 1's sequence (A000012) appears in the central column (but note that this is NOT the way the triangle is constructed!):
.
. 1,
. 3, 2,
. 4, 1, 3,
. 6, 5, 2, 4,
. 2, 3, 1, 6, 5,
. 8, 7, 5, 2, 4, 6,
. 10, 9, 4, 1, 3, 5, 7,
...
Also the triangle may be reformatted for reading from left to right:
.
. 1;
. 2, 3;
. 3, 1, 4;
. 4, 2, 5, 6;
. 5, 6, 1 , 3, 2;
. 6, 4, 2, 5, 7, 8;
. 7, 5, 3, 1, 4, 9, 10;
...
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Omar E. Pol, Jun 10 2017
STATUS
approved