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.

A063875 Numbers k such that sigma(k) - usigma(k) > 3k.

Original entry on oeis.org

831600, 1058400, 1587600, 1663200, 1814400, 1940400, 1965600, 2116800, 2328480, 2494800, 2570400, 2646000, 2721600, 2872800, 2910600, 2948400, 3024000, 3175200, 3326400, 3528000, 3603600, 3628800, 3704400, 3880800, 3931200
Offset: 1

Views

Author

Jason Earls, Aug 27 2001

Keywords

Crossrefs

Programs

  • PARI
    u(n) = sumdiv(n,d, if(gcd(d,n/d)==1,d));
    for(n=1,10^9, if(sigma(n)-u(n)>3*n,print(n)))
    
  • PARI
    u(n) = sumdiv(n, d, if(gcd(d, n/d)==1, d))
    { n=0; for (m=1, 10^9, if(sigma(m) - u(m) > 3*m, write("b063875.txt", n++, " ", m); if (n==1000, break)) ) } \\ Harry J. Smith, Sep 01 2009

Extensions

a(20)-a(25) from Harry J. Smith, Sep 01 2009