function binom_1 = bino (a)
for k = 0 : a
    binom_1 (k+1) = nchoosek (a, k);	    
end
