Claim : every row of the triangular array that you have, is an arithmetic progression. More precisely, the common difference in the $n$th row (difference between consecutive elements of the row) is $2^{n}$.
Proof : Clearly, the first row is an arithmetic progression of common difference two.
Call the elements of the triangular array $a_{n,i}$ where $n$ is the row (from top : the topmost row is $1$, second top most is $2$ etc.) and $i$ is the index within the row (for example, $a_{1,2} = 3$).
Then, $a_{(n+1),i} = a_{n,i+1} + a_{n,i}$ (similar to, but not quite the combinatorial relation), so $a_{(n+1),i+1} - a_{(n+1),i} = (a_{n,i+1} - a_{n,i-1}) = 2 \times 2^{n} = 2^{n+1}$. So our fact follows by induction.
Now, is there a nice formula for the first element of every row? Indeed, $a_{(n+1),1} = a_{n,1} + a_{n,2} = 2a_{n,1} + 2^n$ is a recurrence relation.
Now, we actually have a formula for each element : $a_{n,i} = a_{n,1} + (i-1)2^n$, and the above formula are the key points.
We have yet another claim, however.
Claim : $a_{n,1} = n2^{n-1}$!
Proof : Indeed, it is true for $n = 1$ and $a_{(n+1),1} = (n+1)2^n$ is easy to see, completing the inductive hypothesis.
Finally, we are in a very nice position : $a_{n,i} = a_{n,1} + (i-1)2^n = (n+2i-2)2^{n-1}$.
You can see this : for example, $a_{2,2} = 8 = (2 + (2 \times 2) - 2)2^{2-1}$
Finally, when is $a_{n,i}$ a multiple of $67$? Note that $2^n$ is coprime to $67$.
Therefore, $a_{n,i}$ is a multiple of $67$ precisely when $(n+2i-2)$ is a multiple of $67$.
Knowing that $1 \leq n \leq 99$ and $i \leq 100-n$, can you now do the problem?
EDIT : You should get $17$ multiples.