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”).

A082583
Quotients C(p, k)/p sorted, with duplicates removed, p being prime.
1
1, 2, 3, 5, 6, 8, 9, 11, 14, 15, 18, 20, 21, 22, 23, 26, 29, 30, 33, 35, 36, 39, 40, 41, 42, 44, 48, 50, 51, 53, 54, 55, 56, 63, 65, 68, 69, 74, 75, 77, 78, 81, 83, 86, 89, 90, 95, 96, 98, 99, 105, 111, 113, 114, 116, 119, 120, 125, 126, 128, 131, 132, 134, 135, 138, 140, 141
OFFSET
1,2
COMMENTS
Sequence includes all entries of A005097=C(p,2)/p.
PROG
(PARI) limit = 150; v = vector(limit); forprime(p = 2, 2*limit + 1, for(k = 1, p/2, b = binomial(p, k)/p; if (b <= limit, v[b] = 1))); for (i = 1, limit, if (v[i], print(i)))
CROSSREFS
Cf. A082581.
Sequence in context: A093689 A097702 A347912 * A274332 A005097 A102781
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, May 07 2003
EXTENSIONS
More terms from David Wasserman, Sep 21 2004
STATUS
approved