Triangular Array
Source: AIME II 2007 #13
March 29, 2007
AMCAIMEPascal's Triangle
Problem Statement
A triangular array of squares has one square in the first row, two in the second, and in general, squares in the th row for With the exception of the bottom row, each square rests on two squares in the row immediately below (illustrated in given diagram). In each square of the eleventh row, a or a is placed. Numbers are then placed into the other squares, with the entry for each square being the sum of the entries in the two squares below it. For how many initial distributions of 's and 's in the bottom row is the number in the top square a multiple of ?
[asy]
defaultpen(linewidth(0.7));
path p=origin--(1,0)--(1,1)--(0,1)--cycle;
int i,j;
for(i=0; i<12; i=i+1) {
for(j=0; j<11-i; j=j+1) {
draw(shift(i/2+j,i)*p);
}}[/asy]