Q03 Find seqquence of C(m+4, 5) in Pascal triangle
Squecne of C(m + 4, 5)
m = 1 : C(5, 5) = 1
m = 2 : C(6, 5) = C(6, 1) = 6
m = 3 : C(7, 5) = C(7, 2) = (7*6)/(2!) = 21
m = 4 : C(8, 5) = C(8, 3) = (8*7*6)/(3!) = 56
Question
Find next two numbers of this sequence from Pascal traingle
Answer
Next two numbers are 126 and 252