OFFSET
1,1
COMMENTS
REFERENCES
Jean-Marie De Koninck, Ces nombres qui nous fascinent, Entry 60, p. 22, Ellipses, Paris, 2008.
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..500
EXAMPLE
120 is in the sequence because bigomega(120) = 5, omega(120) = 3, and 5^3 = 125 > 120.
MAPLE
with(numtheory): for n from 1 to 200000 do:if bigomega(n)^ nops(factorset(n))>
n then printf(`%d, `, n):else fi:od:
MATHEMATICA
Select[Range[2, 10^5], PrimeOmega[#]^PrimeNu[#] > # &] (* From Alonso del Arte, Dec 13 2010 *)
PROG
(PARI) is(k) = {my(e = factor(k)[, 2]); vecsum(e)^#e > k; } \\ Amiram Eldar, Sep 12 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Dec 13 2010
STATUS
approved