A356447 Integers k such that (k+1)*(2*k-1) does not divide the central binomial coefficient B(k) = binomial(2*k,k) = A000984(k).
2, 5, 8, 11, 14, 26, 29, 32, 35, 38, 41, 80, 83, 86, 89, 92, 95, 107, 110, 113, 116, 119, 122, 242, 245, 248, 251, 254, 257, 269, 272, 275, 278, 281, 284, 323, 326, 329, 332, 335, 338, 350, 353, 356, 359, 362, 365, 728, 731, 734, 737, 740, 743, 755, 758, 761
Offset: 1
Examples
k = 95 is a term, since it is k == 2 (mod 3) and k-1 = 94 has base-3 expansion 10111 which has no digit 2's. It can be checked that B(k) = binomial(190,95) is not divisible by (k+1)*(2*k-1) = 18144. As another example, a(18)=107, also congruent to 2 (mod 3), and 107+1=108 has base-3 expansion 11000. It can be checked that binomial(2*107,107) is not divisible by (107+1)*(2*107-1). 125 is not a term of the sequence, because even though it's congruent to 2 (mod 3), the base-3 expansions of 125+1=126 and 125-1=124 are 11200 and 11121. It can be checked that binomial(2*125,125) is divisible by (125+1)*(2*125-1).
Links
- Mathematics Stack Exchange, Factors of central binomial coefficient
Programs
-
Mathematica
kmax=762; a={}; For[k=1, k<=kmax, k++, If[Not[Divisible[Binomial[2k, k], (k+1)(2k-1)]], AppendTo[a, k]]]; a (* Stefano Spezia, Aug 12 2022 *)
-
PARI
isok(k) = Mod(binomial(2*k,k), (k+1)*(2*k-1)) != 0; \\ Michel Marcus, Aug 10 2022
-
Python
def A356447(n): a, b = divmod(n,3) return (int(bin(a)[2:],3)*3+b)*3-1 # Chai Wah Wu, Jul 29 2025
Formula
a(n) = 3*A096304(n) - 1.
Comments