OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..3388
EXAMPLE
n=14, binomial(14,7) = 3432 = 8*3*11*13. The largest square divisor is 4, and the squarefree part is 858. So GCD(4,858) = 2 and a(14) = 858/2 = 429.
MATHEMATICA
a[n_] := Denominator[(b = Binomial[n, Floor[n/2]])/(Times @@ First /@ FactorInteger[b])^2]; Array[a, 36] (* Amiram Eldar, Sep 05 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Jul 26 2000
EXTENSIONS
New name and more terms from Amiram Eldar, Sep 05 2020
STATUS
approved