I am writing a document and would love to write Pascal's triangle modulo 2. That is each binomial coefficient modulo 2, "the remainder" when dividing by 2. I found these links (Pascal) of the code for the normal triangle, and tried to just write manually each node, but I just didn't manage to do it. I want a triangle like:
1
11
101
1111
10001
...
Some help would be really appreciated, thank you very much.

