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

A147644
Triangle read by rows: t(n,m)=Binomial[n, m] + If[n > 2, 2*Binomial[n - 2, m - 1], 0]; Mod[If[n > 2, 2*Binomial[n - 2, m - 1], 0],2]=0.
0
1, 1, 1, 1, 2, 1, 1, 5, 5, 1, 1, 6, 10, 6, 1, 1, 7, 16, 16, 7, 1, 1, 8, 23, 32, 23, 8, 1, 1, 9, 31, 55, 55, 31, 9, 1, 1, 10, 40, 86, 110, 86, 40, 10, 1, 1, 11, 50, 126, 196, 196, 126, 50, 11, 1, 1, 12, 61, 176, 322, 392, 322, 176, 61, 12
OFFSET
0,5
COMMENTS
Row sums are:{1, 2, 4, 12, 24, 48, 96, 192, 384, 768, 1536,...}
EXAMPLE
{1}, {1, 1}, {1, 2, 1}, {1, 5, 5, 1}, {1, 6, 10, 6, 1}, {1, 7, 16, 16, 7, 1}, {1, 8, 23, 32, 23, 8, 1}, {1, 9, 31, 55, 55, 31, 9, 1}, {1, 10, 40, 86, 110, 86, 40, 10, 1}, {1, 11, 50, 126, 196, 196, 126, 50, 11, 1}, {1, 12, 61, 176, 322, 392, 322, 176, 61, 12, 1}
MATHEMATICA
Table[Table[Binomial[n, m] + If[n > 2, 2*Binomial[n - 2, m - 1], 0], {m, 0, n}], {n, 0, 10}]; Flatten[%]
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Nov 09 2008
STATUS
approved