OFFSET
0,5
COMMENTS
T(i,j)*C(i+j,i) is the number of ways to write the vector (i,i,j,j) as a sum of vectors containing two occurrences of the number 1.
Up to order, the number of different sums is A106255(i+1,j+1).
EXAMPLE
There are T(1,1)*C(2,1)=6 ways to write the vector (1,1,1,1) as a sum of vectors containing two occurrences of the number 1 : (1,1,0,0)+(0,0,1,1), (0,0,1,1)+(1,1,0,0), (1,0,1,0)+(0,1,0,1), (0,1,0,1)+(1,0,1,0), (1,0,0,1)+(0,1,1,0), (0,1,1,0)+(1,0,0,1).
The square array T(i,j) (i >= 0, j >= 0) begins:
1, 1, 1, 1, 1, 1, ...
1, 3, 5, 7, 9, 11, ...
1, 5, 15, 31, 53, 81, ...
1, 7, 31, 93, 213, 411, ...
1, 9, 53, 213, 639, 1551, ...
1, 11, 81, 411, 1551, 4653, ...
...
MATHEMATICA
T[i_, j_]:=Sum[Binomial[i, k]Binomial[j, k]Binomial[2k, k], {k, 0, Min[i, j]}]; Flatten[Table[T[i-j, j], {i, 0, 10}, {j, 0, i}]] (* Stefano Spezia, Nov 17 2020 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Ludovic Schwob, Nov 16 2020
EXTENSIONS
More terms from Stefano Spezia, Nov 17 2020
STATUS
approved