The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A114213 A generalized Pascal triangle modulo 2. 2
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Row sums are A114212. Diagonal sums are A114214.
Row sums of inverse are 0^n (conjecture).
LINKS
Jeffrey Shallit and Lukas Spiegelhofer, Continuants, run lengths, and Barry's modified Pascal triangle, arXiv:1710.06203 [math.CO], 2017.
FORMULA
T(n, k) = (Sum_{j=0..n-k} C(k, j)*C(n-k, j)*(1+(-1)^j)/2) mod 2.
EXAMPLE
Triangle begins
1;
1, 1;
1, 1, 1;
1, 1, 1, 1;
1, 1, 0, 1, 1;
1, 1, 0, 0, 1, 1;
1, 1, 1, 0, 1, 1, 1;
1, 1, 1, 1, 1, 1, 1, 1;
1, 1, 0, 1, 0, 1, 0, 1, 1;
1, 1, 0, 0, 0, 0, 0, 0, 1, 1;
1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1;
PROG
(PARI) T(n, k) = sum(j=0, n-k, binomial(k, j)*binomial(n-k, j)*(1+(-1)^j)/2) % 2; \\ Michel Marcus, Jun 06 2021
CROSSREFS
Sequence in context: A178788 A131217 A105567 * A108358 A267959 A144384
KEYWORD
easy,nonn,tabl
AUTHOR
Paul Barry, Nov 17 2005
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 May 14 10:41 EDT 2024. Contains 372532 sequences. (Running on oeis4.)