MathDB
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, kk squares in the kkth row for 1k11.1 \leq k \leq 11. 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 00 or a 11 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 00's and 11's in the bottom row is the number in the top square a multiple of 33? [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]