OFFSET
2,1
COMMENTS
The Erdős paper calls this function g(n) and states that it not known whether it is bounded. Currently, g(3160)=13 is the greatest known value of g. See A129489.
LINKS
T. D. Noe, Table of n, a(n) for n = 2..5000
P. Erdős, R. L. Graham, I. Z. Russa and E. G. Straus, On the prime factors of C(2n,n), Math. Comp. 29 (1975), 83-92.
MATHEMATICA
Table[Transpose[FactorInteger[Binomial[2n, n]]][[1, 2]], {n, 2, 150}]
PROG
(PARI) a(n)=my(k); forprime(p=3, default(primelimit), k=1; while((k*=p)<=2*n, if(n/k-n\k>1/2, return(p)))) \\ Charles R Greathouse IV, Dec 19 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Apr 17 2007
STATUS
approved