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.

A285313 Number of pairs (a,b) such that a*b = n and d(a) = d(b) with d = A000005 and a <= b.

Original entry on oeis.org

1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1
Offset: 1

Views

Author

Michel Marcus, Apr 17 2017

Keywords

Crossrefs

Cf. A000005, A277621 (for n!).

Programs

  • Mathematica
    a[n_]:=Sum[Boole[d<=(n/d) && DivisorSigma[0, d] == DivisorSigma[0, n/d]], {d, Divisors[n]}]; Table[a[n], {n, 100}] (* Indranil Ghosh, Apr 18 2017 *)
  • PARI
    a(n) = sumdiv(n, d, (d <= n/d) && (numdiv(d) == numdiv(n/d)));
    
  • Python
    from sympy import divisors, divisor_count
    def a(n): return sum([d<=(n/d) and divisor_count(d)==divisor_count(n/d) for d in divisors(n)]) # Indranil Ghosh, Apr 18 2017

Formula

a(p) = 0; for prime p and for an odd power of a prime.
a(p^2k) = 1, for an even power of a prime.