A127570 Triangle T(n,k) = sigma(k) if k|n, otherwise T(n,k)=0; 1 <= k <= n.
1, 1, 3, 1, 0, 4, 1, 3, 0, 7, 1, 0, 0, 0, 6, 1, 3, 4, 0, 0, 12, 1, 0, 0, 0, 0, 0, 8, 1, 3, 0, 7, 0, 0, 0, 15, 1, 0, 4, 0, 0, 0, 0, 0, 13, 1, 3, 0, 0, 6, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 1, 3, 4, 7, 0, 12, 0, 0, 0, 0, 0, 28, 1
Offset: 1
Examples
First few rows of the triangle are: 1; 1, 3; 1, 0, 4; 1, 3, 0, 7; 1, 0, 0, 0, 6; 1, 3, 4, 0, 0, 12; ...