cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A048196 Numbers k for which binomial(k, floor(k/2)) has the same number of unitary and non-unitary divisors.

Original entry on oeis.org

14, 22, 33, 42, 44, 56, 57, 59, 74, 107, 113, 115, 1568, 1571
Offset: 1

Views

Author

Keywords

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

Examples

			At k=59, the corresponding binomial coefficient, binomial(59,29) has 8192 divisors, of which 4096 are unitary and 4096 are not.
		

Crossrefs

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.

Formula

Extensions

a(9) .. a(14) from Joerg Arndt, May 13 2018