login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A063891 Numbers k such that nusigma(usigma(k)) = 2k, where usigma(k) is the sum of unitary divisors of k (A034448) and nusigma(k) is the sum of non-unitary divisors of k (A048146). 0
1631, 2016, 8928, 11808, 36576, 45360, 1486080, 2359008, 3093552, 37748448, 101350656, 150994656, 2885670144 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(14) > 2*10^11. All the numbers of the form 2^5 * 3^2 * p where p>3 is a Mersenne prime (A000668) are in the sequence, so a(14) <= 618475290336. - Giovanni Resta, Apr 10 2019
LINKS
MATHEMATICA
usigma[1] = 1; usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); nusigma[n_] := DivisorSigma[1, n] - usigma[n]; Select[Range[12000], nusigma[usigma[#]] == 2# &] (* Amiram Eldar, Apr 10 2019 *)
PROG
(PARI) u(n) = sumdiv(n, d, if(gcd(d, n/d)==1, d));
z(n)=sigma(n)-u(n) ;
for(n=1, 10^8, if(z(u(n))==2*n, print1(n, ", ")))
CROSSREFS
Sequence in context: A241493 A328452 A202985 * A254849 A237923 A297659
KEYWORD
more,nonn
AUTHOR
Jason Earls, Aug 28 2001
EXTENSIONS
More terms from Thomas Baruchel, Oct 22 2003
a(11)-a(13) from Amiram Eldar, Apr 10 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 20:05 EDT 2024. Contains 371254 sequences. (Running on oeis4.)