A355462 Powerful numbers divisible by exactly 2 distinct primes.
36, 72, 100, 108, 144, 196, 200, 216, 225, 288, 324, 392, 400, 432, 441, 484, 500, 576, 648, 675, 676, 784, 800, 864, 968, 972, 1000, 1089, 1125, 1152, 1156, 1225, 1296, 1323, 1352, 1372, 1444, 1521, 1568, 1600, 1728, 1936, 1944, 2000, 2025, 2116, 2304, 2312, 2500
Offset: 1
Keywords
Examples
36 is a term since 36 = 2^2 * 3^2.
Links
Crossrefs
Programs
-
Mathematica
Select[Range[2500], Length[(e = FactorInteger[#][[;; , 2]])] == 2 && Min[e] > 1 &]
-
PARI
is(n) = {my(f=factor(n)); #f~ == 2 && vecmin(f[,2]) > 1};
Formula
Sum_{n>=1} 1/a(n) = ((Sum_{p prime} (1/(p*(p-1))))^2 - Sum_{p prime} (1/(p^2*(p-1)^2)))/2 = 0.1583860791... .
Comments