cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A129488 Smallest odd prime dividing binomial(2n,n).

Original entry on oeis.org

3, 5, 5, 3, 3, 3, 3, 5, 11, 3, 7, 5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 5, 3, 7, 7, 3, 3, 3, 3, 7, 7, 3, 5, 5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 5, 3, 5, 5, 3, 3, 3, 3, 5, 5, 3, 5, 5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3
Offset: 2

Views

Author

T. D. Noe, Apr 17 2007

Keywords

Comments

The Erdős paper calls this function g(n) and states that it is not known whether it is bounded. Currently, g(3160)=13 is the greatest known value of g. See A129489.

Crossrefs

Cf. A030979 (n such that g(n)>=11), A129489, A266366.

Programs

  • Mathematica
    Table[Transpose[FactorInteger[Binomial[2n,n]]][[1,2]], {n,2,150}]
  • 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