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

A266366
Least k such that prime(n) is the smallest odd prime factor of C(2k,k).
2
2, 3, 12, 10, 3160
OFFSET
2,1
COMMENTS
If n>0, then a(n+2) >= A129489(n) = least k>1 such that binomial(2k,k) is not divisible by any of the first n odd primes.
It is not known whether any more terms exist. See A129489 for bounds, comments and references.
EXAMPLE
C(2,1) = 2, C(4,2) = 6 = 2 * 3, C(6,3) = 20 = 2^2 * 5, and 3 = prime(2), 5 = prime(3), so a(2) = 2 and a(3) = 3.
PROG
(PARI) valp(n, p)=my(s); while(n\=p, s+=n); s
a(n)=my(q=prime(n), k=1); while(k++, forprime(p=3, q-1, if(valp(2*k, p)>2*valp(k, p), next(2))); if(valp(2*k, q)>2*valp(k, q), return(k))) \\ Charles R Greathouse IV, Feb 03 2016
CROSSREFS
KEYWORD
bref,hard,more,nonn
AUTHOR
Jonathan Sondow, Jan 18 2016
STATUS
approved