A332269 Numbers m with only one divisor d such that sqrt(m) < d < m.
6, 8, 10, 14, 15, 16, 21, 22, 26, 27, 33, 34, 35, 38, 39, 46, 51, 55, 57, 58, 62, 65, 69, 74, 77, 81, 82, 85, 86, 87, 91, 93, 94, 95, 106, 111, 115, 118, 119, 122, 123, 125, 129, 133, 134, 141, 142, 143, 145, 146, 155, 158, 159, 161, 166, 177, 178, 183, 185, 187
Offset: 1
Keywords
Examples
The divisors of 15 are {1, 3, 5, 15} and only 5 satisfies sqrt(15) < 5 < 15, hence 15 is a term. The divisors of 27 are {1, 3, 9, 27} and only 9 satisfies sqrt(27) < 9 < 27, hence 27 is a term. The divisors of 16 are {1, 2, 4, 8, 16} and only 8 satisfies sqrt(16) < 8 < 16, hence 16 is a term. The divisors of 28 are {1, 2, 4, 7, 14, 28} but 7 and 14 satisfy sqrt(28) < 7 < 14 < 28, hence 28 is not a term.
Crossrefs
Programs
-
Magma
[k:k in [1..200]|#[d:d in Divisors(k)|d gt Sqrt(k) and d lt k] eq 1]; // Marius A. Burtea, May 07 2020
-
Mathematica
Select[Range[200], MemberQ[{4, 5}, DivisorSigma[0, #]] &] (* Amiram Eldar, May 04 2020 *)
-
PARI
isok(m) = #select(x->(x^2 > m), divisors(m)) == 2; \\ Michel Marcus, May 05 2020
Comments