OFFSET
1,1
EXAMPLE
The 5th row of Pascal's triangle is (1,5,10,10,5,1). The positive integers which are < than the greatest term (10) of this row and which are missing from this row are (2,3,4,6,7,8,9).
MAPLE
for n from 0 to 8 do brow := [seq( binomial(n, k), k=0..n)] : for k from 1 to binomial(n, floor(n/2)) do if not k in brow then printf("%d, ", k) ; fi ; od: od: # R. J. Mathar, Sep 02 2007
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Leroy Quet, Jul 04 2007
EXTENSIONS
More terms from R. J. Mathar, Sep 02 2007
STATUS
approved