|
| |
|
|
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
(list; graph; refs; listen; history; internal format)
|
|
|
|
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:
|
|
|
CROSSREFS
| Cf. A006987, A082583.
Sequence in context: A072806 A189402 A051942 * A075846 A164714 A060852
Adjacent sequences: A082578 A082579 A082580 * A082582 A082583 A082584
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Lekraj Beedassy (blekraj(AT)yahoo.com), May 07 2003
|
|
|
EXTENSIONS
| More terms and Maple code from James A. Sellers (sellersj(AT)math.psu.edu), May 19, 2003
|
| |
|
|