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!)
A303357 Unitary near-perfect numbers: unitary abundant numbers n such that usigma(n) - 2n is a unitary divisor of n, where usigma(n) is the sum of unitary divisors of n (A034448). 1
295680, 13278720, 363095040, 454755840, 675333120, 694256640, 845053440, 1038428160, 2274455040, 2357921280, 3099048960, 5021076480, 6114339840, 9643096320, 9817328640, 14495416320, 17121377280, 23787294720, 30583418880, 36277463040, 45129477120, 114499338240, 211380879360 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The unitary version of A181595.
All the terms up to a(23) are divisible by 2^8 * 3 * 5. - Giovanni Resta, Apr 26 2018
LINKS
EXAMPLE
295680 is in the sequence since usigma(295680) - 2*295680 = 592128 - 591360 = 768 and 768 is a unitary divisor of 295680.
MATHEMATICA
usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])]; aQ[n_] :=
Module[{d}, d = usigma[n] - 2 n; If[d <= 0, False, Divisible[n, d] && GCD[d, n/d] == 1]]; n = 1; seq={}; Do[ If[aQ[n], AppendTo[seq, n]]; n++, {k, 1, 300000}]; seq
CROSSREFS
Sequence in context: A109031 A137817 A137818 * A251387 A164946 A204318
KEYWORD
nonn
AUTHOR
Amiram Eldar, Apr 22 2018
EXTENSIONS
a(9)-a(23) from Giovanni Resta, Apr 26 2018
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 April 18 04:56 EDT 2024. Contains 371767 sequences. (Running on oeis4.)