A triangular array of numbers has a first row consisting of the odd integers $1,3,5,\ldots,99$ in increasing order. Each row below the first has one fewer entry than the row above it, and the bottom row has a single entry. Each entry in any row after the top row equals the sum of the two entries diagonally above it in the row immediately above it. How many entries in the array are multiples of $67$?
Except for writing down some numbers, I wasn't sure how to proceed on this question. Does anyone have any ideas?
Instead of generating each row by taking sums of consecutive elements, take averages. This will divide every element in the whole triangle by some power of $2$, and therefore will not affect which ones are divisible by $67$. Doing it this way the table becomes $$\matrix{ 1&&3&&5&&\cdots&&95&&97&&99\cr &2&&4&&6&&\cdots&&96&&98\cr &&3&&5&&7&&\cdots&&97\cr}$$ with an obvious pattern. At this stage there is one multiple of $67$ in every row that starts with an odd number. This continues until the $33$rd row, which is $$\matrix{33&&35&&37&&\cdots&&65&&67\cr}\ ;$$ after this we have $$\matrix{34&&36&&38&&\cdots&&66\cr&35&&37&&\cdots&&65\cr}$$ and it is clear that there will be no more multiples of $67$. So there is one multiple of $67$ in rows $1,3,5,\ldots,33$, and no more.
Answer. The triangle contains $17$ multiples of $67$.