OFFSET
1,3
COMMENTS
This property is weaker than "squarefreedom", but shows how central binomial coefficients are "poor of squares".
Numbers k such that binomial(k,floor(k/2)) is cubefree (A004709). - Amiram Eldar, Jul 22 2024
LINKS
T. D. Noe, Table of n, a(n) for n = 1..129 (no others < 10^8)
EXAMPLE
223 is a term because x = binomial(223,111) has 35 prime divisors. 33 arises at power 1. Only 2 and 13 has powers 2 > 1. So square divisors of x are {1, 4, 169, 676} ={s}. All of them are also unitary divisors since GCD(s,x/s) = 1 holds for them.
MATHEMATICA
Select[Range[0, 11000], AllTrue[FactorInteger[Binomial[#, Floor[#/2]]][[;; , 2]], #1 <= 2 &] &] (* Amiram Eldar, Jul 22 2024 *)
PROG
(PARI) is(n) = if(n <= 1, 1, vecmax(factor(binomial(n, floor(n/2)))[, 2]) < 3); \\ Amiram Eldar, Jul 22 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Aug 09 2000
STATUS
approved