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

A146532
Triangle read by rows: a(n)=2^Floor[n/2]*Gamma[1 + Floor[n/2]]; t(n,m) = a[n]/(a[n - m]*a[m]).
0
1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 4, 2, 4, 1, 1, 1, 2, 2, 1, 1, 1, 6, 3, 12, 3, 6, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 8, 4, 24, 6, 24, 4, 8, 1, 1, 1, 4, 4, 6, 6, 4, 4, 1, 1, 1, 10, 5, 40, 10, 60, 10, 40, 5, 10, 1
OFFSET
0,5
COMMENTS
The row sums are: {1, 2, 4, 4, 12, 8, 32, 16, 80, 32, 192}.
FORMULA
a(n)=2^Floor[n/2]*Gamma[1 + Floor[n/2]]; t(n,m) = a[n]/(a[n - m]*a[m]).
EXAMPLE
{1}, {1, 1}, {1, 2, 1}, {1, 1, 1, 1}, {1, 4, 2, 4, 1}, {1, 1, 2, 2, 1, 1}, {1, 6, 3, 12, 3, 6, 1}, {1, 1, 3, 3, 3, 3, 1, 1}, {1, 8, 4, 24, 6, 24, 4, 8, 1}, {1, 1, 4, 4, 6, 6, 4, 4, 1, 1}, {1, 10, 5, 40, 10, 60, 10, 40, 5, 10, 1}
MATHEMATICA
Clear[a, n, t]; a[n_] = 2^Floor[n/2]*Gamma[1 + Floor[n/2]]; t[n_, m_] = a[n]/(a[n - m]*a[m]); Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]; Flatten[%]
CROSSREFS
Sequence in context: A135303 A036065 A082907 * A305720 A225372 A184879
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Oct 30 2008
STATUS
approved