A104571 Triangle T(n,k) = A042948(n-k+1) read by rows, 0<=k<=n.
1, 4, 1, 5, 4, 1, 8, 5, 4, 1, 9, 8, 5, 4, 1, 12, 9, 8, 5, 4, 1, 13, 12, 9, 8, 5, 4, 1, 16, 13, 12, 9, 8, 5, 4, 1
Offset: 0
Examples
The first few rows are: 1; 4, 1; 5, 4, 1; 8, 5, 4, 1; 9, 8, 5, 4, 1; ...
Formula
The triangle is extracted from the product of lower triangular matrices (with the rest of the terms all zeros): G * R (or R * G); G = [1; 3, 1; 1, 3, 1; 3, 1, 3, 1;...]; R = [1; 1, 1; 1, 1, 1;...].