How many numbers occur exactly once in 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.
Every positive integer n occurs in Pascal's triangle as the entries ( 1 n ) and ( n − 1 n ) . The only time this does not give two distinct entries is when 1 = n − 1 , so n = 2 . For any row higher than the second row, all entries are either 1 or larger than 2 , so 2 only occurs once, while every other positive integer occurs at least twice. So the answer is 1 .