11⋅9 As shown, Pascal's (Yang Hui's) Triangle is an array of positive integers, where the first row is 1, the second row is two 1s, each row starts and ends with 1, and in any row, the k-th number (when it is not 1) is the sum of the k-th and (k−1)-th numbers in the previous row. In the first n rows, the ratio of the number of numbers that are not 1 to the number of 1s is 111141123613411
Pick one
Official solution
[Solution] In the first n rows, the number of 1's is (2n−1), and the number of other numbers is 21(n−2)(n−1)=21(n2−3n+2) .
The quotient is 4n−2n2−3n+2.
Therefore, the answer is (D).
Source: NuminaMath-1.5,
licensed Apache-2.0.
Statement and solution reproduced as published; topic, difficulty and ordering added
by this site.