i'm trying to populate a sparse array with lists in certain positions, i tried the following code,
A = SparseArray[{i_, j_} /; 0 <= j - i <= 1 -> Avk, {10, 10 + 1}];
where Avk is 2x2 matrix, but mathematica yields that the assigned value must not be a list. i want the result to be like

where Avk and 0 are a 2x2 matrices (here is an example of dimension (3x4)), but the actual problem is (124x126) matrix.

