What is the sum of the entries of the
row of the
Pascal's triangle
?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
In pascal's triangle, each number is the sum of the number to it's top left + top right. Every time you go down a layer, each number of the previous numbers is calculated twice, one time as the top left number and one time as the top right number. Therefore, the size doubles each time you go down a row. To find the 10th row (with the top being the 0th), simply find 2^10.