OFFSET
1,4
COMMENTS
A digit-wise analog of A049581.
The binary operator T: N x N -> N is commutative, so we need only the lower half of the symmetric square table A330238 or A330240 (including n, k = 0). Also, 0 is the neutral element: T(x,0) = x for all x, therefore we omit row & column 0. The trivial diagonal T(x,x) = 0 could also be omitted but serves as an end-of-row marker and makes indexing simpler and more natural.
LINKS
Eric Angelini, The box ■ operation, personal blog "Cinquante signes", and post to the SeqFan list, Dec 06 2019.
Eric Angelini, The box ■ operation, personal blog "Cinquante signes", and post to the SeqFan list, Dec 06 2019. [Cached copy]
EXAMPLE
The triangle starts as follows:
n | k=1 2 3 4 5 6 7 8 9 10 11
---+-------------------------------------------
1 | 0,
2 | 1, 0,
3 | 2, 1, 0,
4 | 3, 2, 1, 0,
5 | 4, 3, 2, 1, 0,
6 | 5, 4, 3, 2, 1, 0,
7 | 6, 5, 4, 3, 2, 1, 0,
8 | 7, 6, 5, 4, 3, 2, 1, 0,
9 | 8, 7, 6, 5, 4, 3, 2, 1, 0,
10 | 11, 12, 13, 14, 15, 16, 17, 18, 19, 0,
11 | 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 0,
12 | 11, 10, 11, 12, 13, 14, 15, 16, 17, 2, 1, 0,
(...)
PROG
CROSSREFS
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, Dec 06 2019
STATUS
approved