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

A124845
Triangle read by rows: T(n,k) = (3 - (-1)^k)*binomial(n,k)/2 (0 <= k <= n).
1
1, 1, 2, 1, 4, 1, 1, 6, 3, 2, 1, 8, 6, 8, 1, 1, 10, 10, 20, 5, 2, 1, 12, 15, 40, 15, 12, 1, 1, 14, 21, 70, 35, 42, 7, 2, 1, 16, 28, 112, 70, 112, 28, 16, 1, 1, 18, 36, 168, 126, 252, 84, 72, 9, 2, 1, 20, 45, 240, 210, 504, 210, 240, 45, 20, 1, 1, 22, 55, 330, 330, 924, 462, 660, 165
OFFSET
0,3
EXAMPLE
First few rows of the triangle:
1;
1, 2;
1, 4, 1;
1, 6, 3, 2;
1, 8, 6, 8, 1;
1, 10, 10, 20, 5, 2;
1, 12, 15, 40, 15, 12, 1;
...
Row 3 sum = 12 = (1 + 6 + 3 + 2) = A003945(3).
MAPLE
T:=(n, k)->(3-(-1)^k)*binomial(n, k)/2: for n from 0 to 12 do seq(T(n, k), k=0..n) od; # yields sequence in triangular form
CROSSREFS
Cf. A003945.
Sequence in context: A247073 A124428 A191310 * A191392 A127625 A124844
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Nov 10 2006
EXTENSIONS
Edited by N. J. A. Sloane, Nov 24 2006
STATUS
approved