A163351 Triangle T(n,k) = m, 0<=k<=n, read by rows, where each decimal digit d of the integer m is the minimum of the corresponding decimal digits of n and k.
0, 0, 1, 0, 1, 2, 0, 1, 2, 3, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 7, 0, 1, 2, 3, 4, 5, 6, 7, 8, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 10, 11, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 10, 11, 12, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 10
Offset: 0
Examples
T(10,1) = 0 = a(56) as 0<1 in both tens and units positions. Sequence first differs from A002262 here. T(104,53) = 3 as 3<4, 0<5, and 0<1.
Comments