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

 


Nonprime numbers whose sum of aliquot divisors (A001065) is a perfect square.
8

%I #19 May 01 2020 23:52:31

%S 1,9,12,15,24,26,56,75,76,90,95,119,122,124,140,143,147,153,176,194,

%T 215,243,287,332,363,386,407,477,495,507,511,524,527,536,551,575,688,

%U 738,791,794,815,867,871,892,924,935,963,992,1075,1083,1159,1196,1199,1295,1304

%N Nonprime numbers whose sum of aliquot divisors (A001065) is a perfect square.

%C The sum of aliquot divisors of prime numbers is 1.

%C If a^2 is an odd square for which a^2-1 = p + q with p,q primes, then p*q is a term. If m = 2^k-1 is a Mersenne prime then m*(2^k) (twice an even perfect number) is a term. If b = 2^j is a square and b-7 = 3s is a semiprime then 4s is a term. - _Metin Sariyar_, Apr 02 2020

%H Amiram Eldar, <a href="/A048699/b048699.txt">Table of n, a(n) for n = 1..10000</a>

%e a(3)=15; aliquot divisors are 1,3,5; sum of aliquot divisors = 9 and 3^2=9.

%p a := []; for n from 1 to 2000 do if sigma(n) <> n+1 and issqr(sigma(n)-n) then a := [op(a), n]; fi; od: a;

%t nn=1400;Select[Complement[Range[nn],Prime[Range[PrimePi[nn]]]],IntegerQ[ Sqrt[DivisorSigma[1,#]-#]]&] (* _Harvey P. Dale_, Apr 25 2011 *)

%Y Cf. A001065, A006532, A020477, A048698, A073040 (includes primes).

%K easy,nonn

%O 1,2

%A _Enoch Haga_

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 24 09:31 EDT 2024. Contains 376196 sequences. (Running on oeis4.)