A365886 Numbers k whose least prime divisor is smaller than its exponent in the prime factorization of k.
8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 81, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 243, 248, 256, 264, 272, 280, 288, 296, 304, 312, 320, 328, 336, 344, 352, 360, 368, 376, 384, 392, 400, 405, 408, 416
Offset: 1
Examples
8 = 2^3 is a term since its least prime factor, 2, is smaller than its exponent, 3.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
q[n_] := Less @@ FactorInteger[n][[1]]; Select[Range[2, 420], q]
-
PARI
is(n) = {my(f = factor(n)); n > 1 && f[1, 1] < f[1, 2];}
Comments