A231169 Triangle read by rows: T[i,j] = number of (distinct) letters which the English names of i and j have in common; j=0,...,i ; i=0,1,2,...
4, 2, 3, 1, 1, 3, 2, 1, 1, 4, 2, 1, 1, 1, 4, 1, 1, 0, 1, 1, 4, 0, 0, 0, 0, 0, 1, 3, 1, 2, 0, 1, 0, 2, 1, 4, 1, 1, 1, 3, 0, 2, 1, 1, 5, 1, 2, 0, 1, 0, 2, 1, 2, 2, 3, 1, 2, 1, 2, 0, 1, 0, 2, 2, 2, 3, 1, 2, 0, 1, 0, 2, 0, 3, 1, 2, 2, 4, 1, 1, 2, 2, 0, 2, 0, 2, 2, 1, 2, 3, 5, 2, 2, 1, 4, 1, 2, 1, 2, 4, 3, 3, 2, 2, 6, 3, 3, 2, 3, 4, 2, 0, 2, 2, 2, 3, 2, 2, 4, 7
Offset: 0
Examples
The triangle reads: row 0: 4; ("zero" and "zero" have the 4 letters "e", "o", "r" and "z" in common) row 1: 2, 3; ("zero" and "one" have {e,o} in common, "one" and "one" have {e,n,o} in common) row 2: 1, 1, 3; (common(two,zero)={o}, common(two,one)={o}, common(two,two)={o,t,w}) row 3: 2, 1, 1, 4; (common(three,three)={e,h,r,t}) etc.
Comments