login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A076733 Largest k such that k! divides C(2n,n). 3

%I #10 Feb 01 2019 11:55:14

%S 2,3,2,2,3,3,4,3,2,2,4,2,2,5,6,3,3,3,5,3,5,5,6,3,4,4,2,2,5,2,2,3,3,3,

%T 4,2,2,5,2,2,5,5,7,5,7,7,7,3,5,4,4,4,7,5,4,4,4,5,6,4,4,4,5,3,3,3,5,3,

%U 5,5,6,3,5,5,7,5,7,7,7,3,2,2,5,2,2,7,5,5,7,2,2,5,2,2,7,3,5,5,5,5,6,5,5,5,6

%N Largest k such that k! divides C(2n,n).

%C All a(n) >= 2, with a(n) = 2 if and only if n is in A005836. - _Robert Israel_, Feb 01 2019

%H Robert Israel, <a href="/A076733/b076733.txt">Table of n, a(n) for n = 1..10000</a>

%p f:= proc(n) local x,k;

%p x:= binomial(2*n,n);

%p for k from 2 do if not (x/k!)::integer then return k-1 fi od

%p end proc:

%p map(f, [$1..105]); # _Robert Israel_, Feb 01 2019

%o (PARI) a(n)=if(n<0,0,k=1; while(binomial(2*n,n)%(k!) == 0,k++); k-1)

%Y Cf. A005836, A055881.

%K nonn

%O 1,1

%A _Benoit Cloitre_, Oct 28 2002

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 02:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)