login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A157219 A binomial tent triangle sequence: tent function: f(n,m)=If[k <= Floor[n/2], k, n - k]; t(n,m)=Binomial[n*f[n, m], f[n, m]]. 0
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 4, 28, 4, 1, 1, 5, 45, 45, 5, 1, 1, 6, 66, 816, 66, 6, 1, 1, 7, 91, 1330, 1330, 91, 7, 1, 1, 8, 120, 2024, 35960, 2024, 120, 8, 1, 1, 9, 153, 2925, 58905, 58905, 2925, 153, 9, 1, 1, 10, 190, 4060, 91390, 2118760, 91390, 4060, 190, 10, 1 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,5

COMMENTS

Row sums are:

{1, 2, 4, 8, 38, 102, 962, 2858, 40266, 123986, 2310062,...}.

FORMULA

Tent function: f(n,m)=If[k <= Floor[n/2], k, n - k]; t(n,m)=Binomial[n*f[n, m], f[n, m]].

EXAMPLE

{1},

{1, 1},

{1, 2, 1},

{1, 3, 3, 1},

{1, 4, 28, 4, 1},

{1, 5, 45, 45, 5, 1},

{1, 6, 66, 816, 66, 6, 1},

{1, 7, 91, 1330, 1330, 91, 7, 1},

{1, 8, 120, 2024, 35960, 2024, 120, 8, 1},

{1, 9, 153, 2925, 58905, 58905, 2925, 153, 9, 1},

{1, 10, 190, 4060, 91390, 2118760, 91390, 4060, 190, 10, 1}

MATHEMATICA

Clear[t, n, m]; f[n_, k_] := If[k <= Floor[n/2], k, n - k];

t[n_, m_] = Binomial[n*f[n, m], f[n, m]];

Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}];

Flatten[%]

CROSSREFS

Sequence in context: A159623 A143199 A137896 * A167040 A054450 A174802

Adjacent sequences:  A157216 A157217 A157218 * A157220 A157221 A157222

KEYWORD

nonn,tabl,uned

AUTHOR

Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Feb 25 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 21:10 EST 2012. Contains 205856 sequences.