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!)
A256152 Numbers n such that n is the product of two distinct primes and sigma(n) is a square number. 5

%I #17 Apr 06 2015 06:12:35

%S 22,94,115,119,214,217,265,382,497,517,527,679,745,862,889,1174,1177,

%T 1207,1219,1393,1465,1501,1649,1687,1915,1942,2101,2159,2201,2359,

%U 2899,2902,2995,3007,3143,3383,3401,3427,3937,4039,4054,4097,4315,4529,4537,4702,4741,5029,5065,5398,5587

%N Numbers n such that n is the product of two distinct primes and sigma(n) is a square number.

%C This sequence is the intersection of A006881 and A006532.

%H Reinhard Zumkeller, <a href="/A256152/b256152.txt">Table of n, a(n) for n = 1..1000</a>

%e 199 is in the sequence because 119=7*17 (the product of two distinct primes) and sigma(119)=8*18=144=12^2 (a square number).

%t f[n_] := Block[{pf = FactorInteger@ n}, Max @@ Last /@ pf == 1 && Length@ pf == 2]; Select[Range@ 6000, IntegerQ@ Sqrt@ DivisorSigma[1, #] && f@ # &] (* _Michael De Vlieger_, Mar 17 2015 *)

%o (PARI) {for(i=1,10^4,if(omega(i)==2&&issquarefree(i)&&issquare(sigma(i)),print1(i,", ")))}

%o (Haskell)

%o a256152 n = a256152_list !! (n-1)

%o 256152_list = filter f a006881_list where

%o f x = a010052' ((spf + 1) * (x `div` spf + 1)) == 1

%o where spf = a020639 x

%o -- _Reinhard Zumkeller_, Apr 06 2015

%Y Cf. A006881, A006532, A256149, A256150, A256151.

%Y Cf. A020639, A010052.

%K nonn

%O 1,1

%A _Antonio Roldán_, Mar 16 2015

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 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)