login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A082581
Binomial coefficients C(p, k), 2<=k<=p-2, sorted, with duplicates removed, p being prime.
1
10, 21, 35, 55, 78, 136, 165, 171, 253, 286, 330, 406, 462, 465, 666, 680, 715, 820, 903, 969, 1081, 1287, 1378, 1711, 1716, 1771, 1830, 2211, 2380, 2485, 2628, 3081, 3403, 3654, 3876, 3916, 4495, 4656, 5050, 5253, 5671, 5886, 6188, 6328, 7770, 8001, 8515
OFFSET
1,1
MAPLE
with(combinat): S := {}: for n from 3 to 80 do p := ithprime(n): for k from 2 to p-2 do S := S union {binomial(p, k)}: od: od: S := sort(convert(S, list)): for j from 1 to 100 do printf(`%d, `, S[j]) od: # James A. Sellers, May 19 2003
CROSSREFS
Sequence in context: A189402 A051942 A250664 * A075846 A164714 A324600
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, May 07 2003
EXTENSIONS
More terms from James A. Sellers, May 19 2003
STATUS
approved