login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A048196 Numbers k for which binomial(k, floor(k/2)) has the same number of unitary and non-unitary divisors. 1
14, 22, 33, 42, 44, 56, 57, 59, 74, 107, 113, 115, 1568, 1571 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Next term > 10^8. - David A. Corneth, May 14 2018
Numbers k where b = binomial(k, floor(k/2)) is of the form p_i ^ e_i where p_i is the i-th prime in the factorization of b, e_i = 1 except exactly one e_i = 3 for i > 1. - David A. Corneth, May 13 2018
LINKS
David A. Corneth, PARI link
FORMULA
EXAMPLE
At k=59, the corresponding binomial coefficient, binomial(59,29) has 8192 divisors, of which 4096 are unitary and 4096 are not.
PROG
(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<<omega(n)); u==numdiv(n)-u; } \\ Joerg Arndt, May 13 2018
(PARI) \\ for a still faster program see the Corneth link.
CROSSREFS
Sequence in context: A306146 A318929 A187776 * A305084 A225710 A183185
KEYWORD
nonn,hard
AUTHOR
EXTENSIONS
a(9) .. a(14) from Joerg Arndt, May 13 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 23 08:39 EDT 2024. Contains 373629 sequences. (Running on oeis4.)