OFFSET
1,2
COMMENTS
bigomega(.) = A001222(.).
There exists an infinity of solutions n of the form n = q^p, where q is prime, bigomega(q^p)= p, and bigomega(p)= q, if we select, for example, p = 2^q.
The first solution with q=5 is n=5^32, the first solution with q=7 is n=7^128.
EXAMPLE
With n = 16 = 2^4, bigomega(16)= 4, bigomega(4)= 2,and 2^4 = 16.
With n = 531441=3^12, bigomega(3^12)= 12, bigomega(12)= 3,and 3^12 = 531441.
MAPLE
with(numtheory): for n from 1 to 1000000000 do: if bigomega(bigomega(n))^bigomega(n)= n then print(n) : fi: od :
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Mar 05 2010
EXTENSIONS
Unspecific references and unrelated cross-references removed - R. J. Mathar, Mar 21 2010
STATUS
approved