A155719 Triangle t(n,m)=A039757(n,m)+A039757(n,n-m) read by rows.
2, 0, 0, 4, -8, 4, -14, 14, 14, -14, 106, -192, 172, -192, 106, -944, 1664, -720, -720, 1664, -944, 10396, -19560, 12644, -6960, 12644, -19560, 10396, -135134, 264158, -176358, 47334, 47334, -176358, 264158, -135134, 2027026, -4098304, 2925880
Offset: 0
Examples
2; 0, 0; 4, -8, 4; -14, 14, 14, -14; 106, -192, 172, -192, 106; -944, 1664, -720, -720, 1664, -944; 10396, -19560, 12644, -6960, 12644, -19560, 10396; -135134, 264158, -176358, 47334, 47334, -176358, 264158, -135134; 2027026, -4098304, 2925880, -1062656, 416108, -1062656, 2925880, -4098304, 2027026; -34459424, 71697024, -53806368, 20516768, -3948000, -3948000, 20516768, -53806368, 71697024, -34459424;
Programs
-
Mathematica
Clear[p, x, n, b, a, b0]; p[x_, n_] := Product[x - (2*i + 1), {i, 0, Floor[n/2]}]; Table[Expand[ CoefficientList[ExpandAll[p[x, n]], x] + Reverse[CoefficientList[ExpandAll[p[x, n]], x]]], {n, 0, 20, 2}]; Flatten[%]
Comments