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!)
A263928 Integers m such that sigma(m)^2 is divisible by m. 6
1, 6, 24, 28, 120, 224, 234, 270, 496, 588, 600, 672, 864, 1080, 1521, 1638, 1782, 2016, 3724, 4320, 4680, 5733, 6048, 6200, 6552, 7128, 8128, 11172, 11466, 15872, 17280, 18144, 18600, 18620, 21600, 22932, 26208, 26460, 27000, 30240, 32640, 32760, 33516, 35640 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Previous name was: "Numbers such that the product of the sum of their divisors and the sum of the reciprocals of their divisors is an integer".
The multiply-perfect numbers (A007691) are a subset of this sequence.
This is a subsequence of A175200. - Michel Marcus, Nov 03 2015
Alternative definition: Numbers m such that Sum_{i = 1..k} (sigma(m) - d_i) / d_i is an integer, where d_i are the k divisors of m. - Paolo P. Lava, Mar 23 2017
LINKS
EXAMPLE
Divisors of 24 are 1, 2, 3, 4, 6, 8, 12, 24. Their sum is sigma(24) = 60 while the sum of their reciprocals is 1/1 + 1/2 + 1/3 + 1/4 + 1/6 + 1/8 + 1/12 + 1/24 = 5/2. Finally 60 * 5/2 = 150.
MAPLE
with(numtheory): P:=proc(q) local n;
for n from 1 to q do if type(sigma(n)^2/n, integer) then print(n);
fi; od; end: P(10^6);
MATHEMATICA
Select[Range[36000], Divisible[DivisorSigma[1, #]^2, #]&] (* Harvey P. Dale, Jul 05 2023 *)
PROG
(PARI) isok(n) = (sigma(n)^2 % n) == 0; \\ Michel Marcus, Nov 03 2015
CROSSREFS
Sequence in context: A336641 A336550 A118372 * A219362 A226476 A216793
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Oct 30 2015
EXTENSIONS
New name from Michel Marcus, Nov 03 2015
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 08:22 EDT 2024. Contains 371236 sequences. (Running on oeis4.)