OFFSET
1,1
COMMENTS
Table 3 in Selmer's paper has typos for n = 83, 100 and 117. - T. D. Noe, Apr 05 2007
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n=1..1000
Ernst S. Selmer, On the number of prime divisors of a binomial coefficient, Math. Scand. 39 (1976), no. 2, 271-281.
MATHEMATICA
Table[n=k; b=1; While[n++; b=b*n/(n-k); Length[FactorInteger[b]]<k]; n, {k, 100}] (* T. D. Noe, Apr 05 2007 *)
lk[n_]:=Module[{k=n+1}, While[PrimeNu[Binomial[k, n]]<n, k++]; k]; Array[ lk, 60] (* Harvey P. Dale, May 13 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Edited by T. D. Noe, Apr 05 2007
STATUS
approved