OFFSET
1,1
COMMENTS
a(n) is the largest prime < 3n. More generally the smallest k such that C(mn,n) divides k! is the largest prime < mn.
FORMULA
a(n) = A151799(3n). - R. J. Mathar, Jul 18 2015
MATHEMATICA
NextPrime[3Range[70], -1] (* Harvey P. Dale, Oct 20 2011 *)
PROG
(PARI) a(n)=if(n<0, 0, s=1; while(k!%binomial(3*n, n)>0, k++); k)
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Apr 20 2003
STATUS
approved