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”).

A228174
Numbers representable as x^x * y^y, with x > y > 1.
0
108, 1024, 6912, 12500, 84375, 186624, 800000, 1259712, 3294172, 11943936, 22235661, 67108864, 145800000, 210827008, 452984832, 1549681956, 2573571875, 4294967296, 10460353203, 38423222208, 40000000000, 52428800000, 99179645184, 270000000000, 782757789696
OFFSET
1,1
COMMENTS
A subsequence of A156223.
EXAMPLE
a(7) = 4^4 * 5^5 = 800000.
MATHEMATICA
nn = 12; Select[Rest[Union[Flatten[Table[If[x > y, x^x*y^y, 0], {x, 3, nn}, {y, 2, nn - 1}]]]], # <= 4*nn^nn &] (* T. D. Noe, Nov 04 2013 *)
CROSSREFS
Sequence in context: A333757 A203373 A292343 * A184201 A101213 A202608
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Nov 02 2013
STATUS
approved