OFFSET
1,10
COMMENTS
Number of prime divisors of the largest square dividing A001405(n). (A prime divisor is nonunitary iff its exponent exceeds 1.)
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
EXAMPLE
For n=10, binomial(10, 5) = 252 = 2*2*3*3*7 has 3 prime divisors of which only one, p=7, is unitary, while 2 and 3 are not. So a(10)=2.
For n=256, binomial(256, 128) also has only 2 prime divisors (3 and 13) whose exponents exceed 1 (4 and 2, respectively), thus a(256)=2.
MATHEMATICA
Table[Count[FactorInteger[Binomial[n, Floor[n/2]]][[All, -1]], e_ /; e > 1], {n, 105}] (* Michael De Vlieger, Mar 05 2017 *)
PROG
(PARI) a(n)=omega(core(binomial(n, n\2), 1)[2]) \\ Charles R Greathouse IV, Mar 09 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Jul 27 2000
EXTENSIONS
Edited by Jon E. Schoenfield, Mar 05 2017
STATUS
approved