login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A108083
Triangle, read by rows, where T(0,0) = 1, T(n,k) = (-1)^n*(2n+1)*T(n-1,k) - T(n-1,k-1).
0
1, -3, -1, -15, -2, 1, 105, 29, -5, -1, 945, 156, -74, -4, 1, -10395, -2661, 658, 118, -7, -1, -135135, -24198, 11215, 876, -209, -6, 1, 2027025, 498105, -144027, -24355, 2259, 299, -9, -1, 34459425, 6440760, -2946564, -270008, 62758, 2824, -452, -8, 1, -654729075, -156833865, 49543956, 8076716
OFFSET
0,2
COMMENTS
Row sums are (-1)^round(n/2) * 2^(2*n) * floor(n/2)! * round(n/2 + 1/2)!.
EXAMPLE
Triangle begins
1;
-3, -1;
-15, -2, 1;
105, 29, -5, -1;
945, 156, -74, -4, 1;
PROG
(PARI) t(n, k) = {if (k < 0, return (0)); if (n < k, return (0)); if (n == 0, return (1)); return ((-1)^n*(2*n+1)*t(n-1, k) - t(n-1, k-1)); } \\ Michel Marcus, Apr 11 2013
CROSSREFS
Sequence in context: A080924 A232179 A128042 * A163239 A134145 A134146
KEYWORD
sign,tabl
AUTHOR
Gerald McGarvey, Jun 04 2005
STATUS
approved