A036785 Numbers divisible by the squares of two distinct primes.
36, 72, 100, 108, 144, 180, 196, 200, 216, 225, 252, 288, 300, 324, 360, 392, 396, 400, 432, 441, 450, 468, 484, 500, 504, 540, 576, 588, 600, 612, 648, 675, 676, 684, 700, 720, 756, 784, 792, 800, 828, 864, 882, 900, 936, 968, 972, 980, 1000, 1008, 1044
Offset: 1
References
- CRC Standard Mathematical Tables and Formulae, 30th ed., (1996) page 102-105.
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
Select[Range@ 1050, And[Length@ # > 1, Total@ Boole@ Map[# > 1 &, #[[All, -1]]] > 1] &@ FactorInteger@ # &] (* Michael De Vlieger, Apr 25 2017 *) dstdpQ[n_]:=Length[Select[Sqrt[#]&/@Divisors[n],PrimeQ]]>1; Select[ Range[ 1100],dstdpQ] (* Harvey P. Dale, Jan 15 2020 *)
-
PARI
is(n)=my(f=vecsort(factor(n)[,2],,4));#f>1&&f[2]>1 \\ Charles R Greathouse IV, Nov 15 2012
Extensions
More terms from Larry Reeves (larryr(AT)acm.org), Apr 03 2000
New name from Charles R Greathouse IV, Nov 15 2012
Comments