OFFSET
0,5
COMMENTS
The parity of the terms in this triangle is the same as in Pascal's triangle (A007318). As a consequence, the number of odd terms in row n is A001316(n).
The distribution of the terms different from 2 in the triangle evokes Sierpinski's triangle; this is also the case for terms that are multiples of 3 (see illustrations in Links section).
LINKS
Rémy Sigrist, Colored representation of the first 1500 rows (where the color is function of log(T(n,k)))
Rémy Sigrist, Representation of the 2's in the first 1500 rows (black pixels correspond to 2's)
Rémy Sigrist, Representation of the multiples of 3 in the first 1500 rows (black pixels correspond to multiples of 3)
EXAMPLE
Triangle begins:
0: 1
1: 1 1
2: 1 2 1
3: 1 3 3 1
4: 1 2 6 2 1
5: 1 3 2 2 3 1
6: 1 2 5 2 5 2 1
7: 1 3 7 7 7 7 3 1
8: 1 2 10 14 14 14 10 2 1
9: 1 3 6 6 14 14 6 6 3 1
...
PROG
(PARI) rad(n) = my (p=factor(n)[, 1]~); prod(i=1, #p, p[i])
{ for (r=0, 12, row = vector(r+1, k, if ( k==1||k==r+1, 1, rad(row[k-1]+row[k]))); for (c=1, #row, print1 (row[c] ", "))) }
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Rémy Sigrist, Apr 01 2019
STATUS
approved