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.

A073931 Numbers n such that the sum of the anti-divisors of n = 2n.

Original entry on oeis.org

77, 1568, 2768, 4775040
Offset: 1

Views

Author

Jason Earls, Sep 03 2002

Keywords

Comments

See A066272 for definition of anti-divisor.
a(5) > 10^10 - Hiroaki Yamanouchi, Mar 18 2015

Crossrefs

Cf. A066417.

Programs

  • Mathematica
    antiDivisorSum[n_] := Total[Select[Range[2, n - 1], Abs[Mod[n, #] - #/2] < 1 &]]
    Select[Range[1, 1600], antiDivisorSum[#] == 2*# &] (* Julien Kluge, Sep 19 2016 *)
  • Python
    from sympy import divisors
    A073931 = [n for n in range(3,10**5) if sum([2*d for d in divisors(n) if n > 2*d and n % (2*d)] + [d for d in divisors(2*n-1) if n > d >=2 and n % d] + [d for d in divisors(2*n+1) if n > d >=2 and n % d]) == 2*n]
    # Chai Wah Wu, Aug 13 2014