A139551 Triangle read by rows: T(n,k) = if n>=3*k and n<3*k*A014963(k-1) then k else 1 T(n,0)=1.
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 0
Examples
Row products of the triangle are: 1 = 1 1*1 = 1 1*1*1 = 1 1*1*1*1 = 1 1*1*1*1*1 = 1 1*1*1*1*1*1 = 1 1*1*2*1*1*1*1 = 2 1*1*2*1*1*1*1*1 = 2 1*1*2*1*1*1*1*1*1 = 2
Programs
-
Excel
=if(and(row()-1>=(column()-1)*3;row()-1 < A014963(k-1)*(column()-1)*3);column()-1;1)
Comments