For this information I tried to write the Td_2 in MATLAB
function S = stirling1(n, k)
S = stirling1(n-1, k-1) - (n-1) * stirling1(n-1, k);
T_d2(i, j) = stirling1(i, j);
The results show Matrix T_d^2:
1 0 0 0
-1 1 0 0
2 -3 1 0
-6 11 -6 1
Td_1 as % Pre-allocate the matrix T_d^1
T_d1(i, j) = nchoosek(i-1, j-1) * ((-M + 1) / 2)^(i-j);
The results are Matrix T_d^1:
1.0000 0 0 0
-1.5000 1.0000 0 0
2.2500 -3.0000 1.0000 0
-3.3750 6.7500 -4.5000 1.0000
Is it a correct method of calculation ? Please could you give suggestions or comments ?