login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A193022
Numbers k that divide (omega(k)*Omega(k))^k.
1
1, 4, 12, 16, 18, 27, 64, 80, 96, 144, 200, 216, 256, 324, 448, 486, 500, 729, 768, 1024, 1152, 1250, 1568, 1728, 2560, 2592, 3125, 3840, 3888, 4096, 5488, 5760, 5832, 6144, 6400, 8640, 8748, 9216, 9600, 11264, 12960, 13122, 13824, 14400, 16000, 16384
OFFSET
1,2
COMMENTS
This is not a subsequence of A067575: 3840 belongs to this sequence but not to A067575.
Also numbers k such that rad(k) = rad(omega(k)*bigomega(k)) where rad is A007947. [Charles R Greathouse IV, Jul 18 2011]
LINKS
Arkadiusz Wesolowski, Table of n, a(n) for n = 1..400
MATHEMATICA
Select[Range[12960], PowerMod[PrimeNu[#] PrimeOmega[#], #, #] == 0 &] (* T. D. Noe, Jul 14 2011 *)
PROG
(PARI) for(n=1, 2^14, if(lift(Mod((omega(n)*bigomega(n))^n, n))==0, print1(n, ", "))); \\ Arkadiusz Wesolowski, Jul 18 2011
CROSSREFS
Cf. A001221 (omega), A001222 (Omega), A007947, A067575.
Sequence in context: A255411 A340929 A067575 * A145199 A082420 A259118
KEYWORD
nonn
AUTHOR
STATUS
approved