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!)
A045795 Unitary-sigma sigma multiply perfect numbers: numbers k such that A061765(k) = m*k for some integer m. 3
1, 2, 4, 8, 10, 16, 24, 27, 30, 54, 63, 64, 108, 126, 165, 238, 252, 360, 432, 504, 512, 660, 864, 952, 1008, 1536, 1728, 2016, 2464, 2640, 4032, 4096, 5544, 10560, 13824, 16728, 17640, 23040, 32256, 45500, 47360, 60928, 65536, 110592, 152064, 153600 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
Sigma(10) = 18 = 2*3^2, usigma(18) = (2+1)*(9+1) = 30, divisible by 10, so 10 is in the sequence.
Sigma(24) = 60 = 2^2*3*5, usigma(60) = 5*4*6 = 120, divisible by 24, so 24 is in the sequence.
MATHEMATICA
q[n_] := Divisible[Times @@ (1 + Power @@@ FactorInteger[DivisorSigma[1, n]]), n]; Select[Range[200000], q] (* Amiram Eldar, Aug 26 2022 *)
PROG
(PARI) for(n=1, 10^9, s=sigma(n); om=omega(s); f=factorint(s); pr=1; for(j=1, om, pr=pr*(f[j, 1]^f[j, 2]+1)); if(pr%n==0, print(n))) \\ Donovan Johnson, Mar 12 2013
CROSSREFS
Sequence in context: A102248 A161374 A272062 * A226816 A371291 A335238
KEYWORD
nonn
AUTHOR
EXTENSIONS
Corrected and extended by Jud McCranie, Oct 28 2001
Missing first term added and offset corrected by Donovan Johnson, Mar 12 2013
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)