A122181 Numbers k that can be written as k = x*y*z with 1 < x < y < z (A122180(k) > 0).
24, 30, 36, 40, 42, 48, 54, 56, 60, 64, 66, 70, 72, 78, 80, 84, 88, 90, 96, 100, 102, 104, 105, 108, 110, 112, 114, 120, 126, 128, 130, 132, 135, 136, 138, 140, 144, 150, 152, 154, 156, 160, 162, 165, 168, 170, 174, 176, 180, 182, 184, 186, 189, 190, 192, 195
Offset: 1
Examples
a(1) = 24 = 2*3*4, a product of three distinct proper divisors (omega(24) = 2, bigomega(24) = 4). a(2) = 30 = 2*3*5, a product of three distinct prime factors (omega(30) = 3). a(10) = 64 = 2*4*8 [= 2^1*2^2*2^3] (omega(64) = 1, bigomega(64) = 6).
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[200], DivisorSigma[0, #] > 6 &] (* Amiram Eldar, Oct 05 2024 *)
-
PARI
isok(n) = numdiv(n)>6
-
PARI
isok(n) = (omega(n)==1 && bigomega(n)>5) || (omega(n)==2 && bigomega(n)>3) || (omega(n)>2)
Comments