OFFSET
1,1
EXAMPLE
12 = 2^2*3 is a term since its product of distinct prime factors 2 * 3 = 6 is less than its sum of prime factors with multiplicity 2 + 2 + 3 = 7.
45 = 3^2*5 is not a term since its product of distinct prime factors 3 * 5 = 15 is greater than its sum of prime factors with multiplicity 3 + 3 + 5 = 11.
All prime numbers fail as terms since the product of distinct prime factors is equal to sum of prime factors.
MATHEMATICA
q[n_] := Module[{f = FactorInteger[n]}, Times @@ f[[;; , 1]] < Plus @@ (f[[;; , 1]]*f[[;; , 2]])]; Select[Range[500], q] (* Amiram Eldar, Jan 16 2023 *)
PROG
(PARI) isok(n)={my(f=factor(n)); vecprod(f[, 1]) < sum(i=1, #f~, f[i, 1]*f[i, 2])} \\ Andrew Howroyd, Jan 16 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Johan Lindgren, Jan 16 2023
STATUS
approved