A048196 Numbers k for which binomial(k, floor(k/2)) has the same number of unitary and non-unitary divisors.
14, 22, 33, 42, 44, 56, 57, 59, 74, 107, 113, 115, 1568, 1571
Offset: 1
Examples
At k=59, the corresponding binomial coefficient, binomial(59,29) has 8192 divisors, of which 4096 are unitary and 4096 are not.
Links
- David A. Corneth, PARI link
Programs
-
PARI
isok(n) ={ n=binomial(n, floor(n/2)); sumdiv(n, d, issquarefree(d)) == sumdiv(n, d, !issquarefree(d)); } \\ Joerg Arndt, May 13 2018
-
PARI
\\ much faster: isok(n) ={ n=binomial(n, floor(n/2)); my(u=1<
Joerg Arndt, May 13 2018 -
PARI
\\ for a still faster program see the Corneth link.
Extensions
a(9) .. a(14) from Joerg Arndt, May 13 2018
Comments