login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A063875
Numbers k such that sigma(k) - usigma(k) > 3k.
1
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,1
LINKS
PROG
(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
CROSSREFS
KEYWORD
nonn
AUTHOR
Jason Earls, Aug 27 2001
EXTENSIONS
a(20)-a(25) from Harry J. Smith, Sep 01 2009
STATUS
approved