OFFSET
1,6
LINKS
Michel Marcus, Table of n, a(n) for n = 1..120
EXAMPLE
n=27: binomial(27,13) = 20058300, its largest square-divisor is 900=30^2 so a(27) = tau(30) = 8.
MATHEMATICA
Table[Count[Divisors@ Binomial[n, Floor[n/2]], d_ /; IntegerQ@ Sqrt@ d], {n, 0, 84}] (* Michael De Vlieger, Feb 18 2017 *)
PROG
(PARI) a(n) = sumdiv(binomial(n, n\2), d, issquare(d)); \\ Michel Marcus, Feb 19 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer Jul 26 2000
STATUS
approved