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.

This page as a plain text file.
%I A063875 #14 Jun 25 2018 03:42:46
%S A063875 831600,1058400,1587600,1663200,1814400,1940400,1965600,2116800,
%T A063875 2328480,2494800,2570400,2646000,2721600,2872800,2910600,2948400,
%U A063875 3024000,3175200,3326400,3528000,3603600,3628800,3704400,3880800,3931200
%N A063875 Numbers k such that sigma(k) - usigma(k) > 3k.
%H A063875 Harry J. Smith, <a href="/A063875/b063875.txt">Table of n, a(n) for n = 1..400</a>
%o A063875 (PARI) u(n) = sumdiv(n,d, if(gcd(d,n/d)==1,d));
%o A063875 for(n=1,10^9, if(sigma(n)-u(n)>3*n,print(n)))
%o A063875 (PARI) u(n) = sumdiv(n, d, if(gcd(d, n/d)==1, d))
%o A063875 { 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
%Y A063875 Cf. A034448, A048146, A034683, A063846.
%K A063875 nonn
%O A063875 1,1
%A A063875 _Jason Earls_, Aug 27 2001
%E A063875 a(20)-a(25) from _Harry J. Smith_, Sep 01 2009