A good answer might be:

The completed, and expanded, chart is below.

Pyramid Scheme

In filling out the chart you might have noticed that it would be useful to know how many balls are in each layer of the pyramid. Of course, the number of the balls in the pyramid is the sum of the number of balls in each layer. But, the number of balls in layer N is Triangle(N), the number of balls in a triangle with a base of N balls.

N1234567
Triangle(N)13610152128
Pyramid(N)141020355684

Say that you know that there are Pyramid(N-1) balls in the first N-1 layers (counting from the top of the pyramid). Then the following scheme looks tempting:

Pyramid(N) = Pyramid(N-1) + Triangle(N)

 

QUESTION 3:

This looks suspiciously like a recursive definition. But what is missing?