|
| |
|
|
A101688
|
|
Once 1, once 0, repeat, twice 1, twice 0, repeat, thrice 1, thrice 0... and so on.
|
|
11
| |
|
|
1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1
(list; table; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,1
|
|
|
COMMENTS
| Triangle T read by rows: T(k,n)=1 if n>=ceil(k/2), 0 otherwise.
Square array A, read by antidiagonals: A(k,n)=1 if n>=k, 0 otherwise.
|
|
|
FORMULA
| G.f.: 1/[(1-xy)(1-y)]. k-th row of array: x^(k-1)/(1-x).
T(n, k)=if(binomial(k, n-k)>0, 1, 0). - Paul Barry (pbarry(AT)wit.ie), Aug 23 2005
|
|
|
EXAMPLE
| .1 1 1 1 1 1 1 1 1 ......... 1
.0 1 1 1 1 1 1 1 1 ........ 0 1
.0 0 1 1 1 1 1 1 1 ....... 0 1 1
.0 0 0 1 1 1 1 1 1 ...... 0 0 1 1
.0 0 0 0 1 1 1 1 1 ..... 0 0 1 1 1
.0 0 0 0 0 1 1 1 1 .... 0 0 0 1 1 1
.0 0 0 0 0 0 1 1 1 ... 0 0 0 1 1 1 1
.0 0 0 0 0 0 0 1 1 .. 0 0 0 0 1 1 1 1
.0 0 0 0 0 0 0 0 1 . 0 0 0 0 1 1 1 1 1
|
|
|
CROSSREFS
| Row/antidiagonal sums are A008619. Cf. A079813.
Sequence in context: A127241 A087748 A117446 * A155031 A155029 A134540
Adjacent sequences: A101685 A101686 A101687 * A101689 A101690 A101691
|
|
|
KEYWORD
| nonn,tabl
|
|
|
AUTHOR
| Ralf Stephan, Dec 19 2004
|
| |
|
|