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!)
A267823 Least k such that primorial(n) divides binomial(2k,k). 4

%I #27 Feb 02 2016 08:21:11

%S 1,2,8,18,18,20,77,128,128,202,202,545,611,771,978,983,983,1625,2441,

%T 2481,2481,2995,3054,3284,3284,3284,3284,3284,5534,5534,5534,8355,

%U 8355,10558,10558,10558,45416,45416,45416,45416,45416,45416,45416

%N Least k such that primorial(n) divides binomial(2k,k).

%C The sequence is infinite. In fact, a(n) <= primorial(n)-1 since binomial(2k,k) is divisible by a prime p if and only if some base-p digit of k is >= p/2 (a corollary of Lucas's theorem or Kummer's theorem), and since the 1s digit of primorial(n)-1 in base p is p-1 if p|primorial(n). See the comments in A267825.

%C What is the explanation for the blocks separated by long gaps: 3284, 3284, 3284, 3284, 3284, then 5534, 5534, 5534, then 8355, 8355, then 10558, 10558, 10558, then 45416, 45416, 45416, 45416, 45416, 45416, 45416?

%H Chai Wah Wu, <a href="/A267823/b267823.txt">Table of n, a(n) for n = 1..100</a>

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Lucas%27_theorem">Lucas' theorem</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Kummer%27s_theorem">Kummer's theorem</a>

%F a(n) = min{k : A267825(k) >= n}.

%F A267825(a(n)) >= n.

%e C(16,8) is divisible by primorial(3) = 2*3*5 = 30, but C(2k,k) is not divisible by 30 for k < 8, so a(3) = 8.

%t T = Range[100000]; L = {}; n = 1; While[Length[T] > 0,

%t L = Append[L, First[T]];

%t T = Select[T, Mod[Binomial[2 #, #], Prime[n + 1]] == 0 &]; n++]; L

%o (PARI) a(n) = {my(prn = prod(k=1, n, prime(k)), k = 1); while(binomial(2*k, k) % prn, k++); k;} \\ _Michel Marcus_, Jan 28 2016

%Y Cf. A000984, A002110, A226078, A267825.

%K nonn

%O 1,2

%A _Jonathan Sondow_, Jan 20 2016

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 10:31 EDT 2024. Contains 371791 sequences. (Running on oeis4.)