login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A157694 Triangle read by rows: the Pascal triangle A007318 with all elements replaced by 1 which do not equal the central binomial coefficients. 0
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 6, 1, 1, 1, 1, 10, 10, 1, 1, 1, 1, 1, 20, 1, 1, 1, 1, 1, 1, 35, 35, 1, 1, 1, 1, 1, 1, 1, 70, 1, 1, 1, 1, 1, 1, 1, 1, 126, 126, 1, 1, 1, 1, 1, 1, 1, 1, 1, 252, 1, 1, 1, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Row sums are {1, 2, 4, 8, 10, 24, 26, 76, 78, 260, 262,...}.
LINKS
FORMULA
t(n,m)= binomial(n,[n/2]) if this equals binomial(n,m), else 1.
EXAMPLE
{1},
{1, 1},
{1, 2, 1},
{1, 3, 3, 1},
{1, 1, 6, 1, 1},
{1, 1, 10, 10, 1, 1},
{1, 1, 1, 20, 1, 1, 1},
{1, 1, 1, 35, 35, 1, 1, 1},
{1, 1, 1, 1, 70, 1, 1, 1, 1},
{1, 1, 1, 1, 126, 126, 1, 1, 1, 1},
{1, 1, 1, 1, 1, 252, 1, 1, 1, 1, 1}
MATHEMATICA
Clear[t, n, m];
t[n_, m_] = If[ Binomial[n, m] == Binomial[n, Floor[n/2]], Binomial[n, Floor[n/2]], 1];
Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}];
Flatten[%]
CROSSREFS
Sequence in context: A026082 A117185 A129181 * A271187 A093557 A098802
KEYWORD
nonn,easy,tabl
AUTHOR
Roger L. Bagula, Mar 04 2009
EXTENSIONS
Edited by the Associate Editors of the OEIS, Apr 10 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 9 07:41 EDT 2024. Contains 375027 sequences. (Running on oeis4.)