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”).

A377660
Triangle read by rows: T(n, k) = (n - k)!*(n + k)!/n!.
0
1, 1, 2, 2, 3, 12, 6, 8, 20, 120, 24, 30, 60, 210, 1680, 120, 144, 252, 672, 3024, 30240, 720, 840, 1344, 3024, 10080, 55440, 665280, 5040, 5760, 8640, 17280, 47520, 190080, 1235520, 17297280, 40320, 45360, 64800, 118800, 285120, 926640, 4324320, 32432400, 518918400
OFFSET
0,3
EXAMPLE
Triangle starts:
[0] 1;
[1] 1, 2;
[2] 2, 3, 12;
[3] 6, 8, 20, 120;
[4] 24, 30, 60, 210, 1680;
[5] 120, 144, 252, 672, 3024, 30240;
[6] 720, 840, 1344, 3024, 10080, 55440, 665280;
MAPLE
T := (n, k) -> (n-k)!*(n+k)!/n!: seq(seq(T(n, k), k= 0..n), n = 0..8);
CROSSREFS
Sequence in context: A134243 A182779 A199673 * A375218 A335942 A240133
KEYWORD
nonn,tabl,new
AUTHOR
Peter Luschny, Dec 08 2024
STATUS
approved