A347885 Odd numbers k such that sigma(k^2) has an odd number of prime factors when counted with multiplicity.
3, 5, 17, 21, 27, 33, 35, 37, 39, 41, 45, 49, 55, 57, 59, 61, 65, 69, 71, 75, 87, 89, 93, 95, 101, 107, 109, 115, 119, 125, 129, 131, 137, 139, 141, 145, 149, 151, 153, 155, 159, 167, 169, 173, 181, 187, 189, 193, 201, 215, 219, 221, 229, 231, 235, 237, 249, 255, 259, 265, 269, 273, 283, 287, 289, 291, 293, 297, 307
Offset: 1
Keywords
Crossrefs
Programs
-
Mathematica
Select[Range[1, 300, 2], OddQ[PrimeOmega[DivisorSigma[1, #^2]]] &] (* Amiram Eldar, Sep 19 2021 *)
-
PARI
isA347885(n) = ((n%2)&&(bigomega(sigma(n^2))%2));
Comments