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!)
A121943 Numbers k such that the central binomial coefficient C(2k,k) is divisible by k^2. 8

%I #54 Jan 10 2022 05:28:27

%S 1,924,1287,2002,2145,3366,3640,3740,4199,6006,6118,6552,7480,7920,

%T 8580,8855,10465,10920,11385,11592,12285,12325,12441,12540,12597,

%U 12920,13224,13398,13566,15080,15834,18270,18354,18837,18972,19227,23562,23870,25641,25740

%N Numbers k such that the central binomial coefficient C(2k,k) is divisible by k^2.

%C Equivalently, numbers n such that the n-th Catalan number C(2n,n)/(n+1) is divisible by n^2. - _Lucian Craciun_, Feb 09 2017

%C The asymptotic density of this sequence is 0.00322778... (Ford and Konyagin, 2021). - _Amiram Eldar_, Jan 26 2021

%H Chai Wah Wu, <a href="/A121943/b121943.txt">Table of n, a(n) for n = 1..10000</a>

%H Kevin Ford and Sergei Konyagin, <a href="https://doi.org/10.1090/tran/8183">Divisibility of the central binomial coefficient binomial(2n, n)</a>, Trans. Amer. Math. Soc., Vol. 374, No. 2 (2021), pp. 923-953; <a href="https://arxiv.org/abs/1909.03903">arXiv preprint</a>, arXiv:1909.03903 [math.NT], 2019-2020.

%t Select[Table[n, {n, 20000}], IntegerQ[Binomial[2#, # ]/#^2] &]

%o (Python)

%o from __future__ import division

%o A121943_list, b = [], 2

%o for n in range(1,10**5):

%o if not b % (n**2):

%o A121943_list.append(n)

%o b = b*(4*n+2)//(n+1) # _Chai Wah Wu_, Mar 27 2016

%o (PARI) lista(nn) = {for(n=1, nn, if(Mod(binomial(2*n, n), n^2) == 0, print1(n, ", ")));} \\ _Altug Alkan_, Mar 27 2016

%Y Cf. A000108, A000984, A014847, A282163, A282346, A283073, A283074, A282672.

%K nonn

%O 1,2

%A _Tanya Khovanova_, Sep 03 2006

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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)