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!)
A130047 Left half of Pascal's triangle (A034868) modulo 2. 2
1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Row sums yield: 1, 1, 1, 2, 1, 2, 2, 4, 1, 2, 2, 4, 2, 4, 4, 8, 1, 2, 2, 4, 2, 4, 4, 8, ...(see A048896).
LINKS
FORMULA
T(n,k) = mod(binomial(n, k), 2), 0 <= k <= floor(n/2). - G. C. Greubel, Aug 12 2017
EXAMPLE
Triangle begins:
1,
1,
1, 0,
1, 1,
1, 0, 0,
1, 1, 0,
1, 0, 1, 0,
1, 1, 1, 1,
1, 0, 0, 0, 0,
1, 1, 0, 0, 0,
1, 0, 1, 0, 0, 0,
1, 1, 1, 1, 0, 0,
1, 0, 0, 0, 1, 0, 0,
1, 1, 0, 0, 1, 1, 0,
1, 0, 1, 0, 1, 0, 1, 0,
1, 1, 1, 1, 1, 1, 1, 1,
1, 0, 0, 0, 0, 0, 0, 0, 0,
...
Triangle (right aligned) begins:
1,
1,
1, 0,
1, 1,
1, 0, 0,
1, 1, 0,
1, 0, 1, 0,
1, 1, 1, 1,
1, 0, 0, 0, 0,
1, 1, 0, 0, 0,
1, 0, 1, 0, 0, 0,
1, 1, 1, 1, 0, 0,
1, 0, 0, 0, 1, 0, 0,
1, 1, 0, 0, 1, 1, 0,
1, 0, 1, 0, 1, 0, 1, 0,
1, 1, 1, 1, 1, 1, 1, 1,
1, 0, 0, 0, 0, 0, 0, 0, 0,
1, 1, 0, 0, 0, 0, 0, 0, 0,
...
MAPLE
# From N. J. A. Sloane, Mar 22 2015:
for n from 0 to 20 do
lprint(seq(binomial(n, k) mod 2, k=0..floor(n/2))); od:
# For row sums:
f:=n->add(binomial(n, k) mod 2, k=0..floor(n/2));
[seq(f(n), n=0..60)];
MATHEMATICA
Table[Mod[Binomial[n, k], 2], {n, 0, 10}, {k, 0, Floor[n/2]}] (* G. C. Greubel, Aug 12 2017 *)
CROSSREFS
Sequence in context: A354355 A266974 A075437 * A293233 A302050 A008683
KEYWORD
nonn,tabf
AUTHOR
Philippe Deléham, Oct 10 2007
EXTENSIONS
Corrected by N. J. A. Sloane, Mar 22 2015 at the suggestion of Kevin Ryde
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 17 10:40 EDT 2024. Contains 375209 sequences. (Running on oeis4.)