login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A367001 Numbers that can be represented in more than one way as x^y * y^x where 1 < x <= y. 1
281474976710656, 150094635296999121, 1073741824000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, 3587638001325335308951996778029678444520536159022591698847370237163925406936776358067367488612064034816 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(7) > 10^1500.
Includes 2^((4*k + 4)*2^((4*k + 4)*2^k + k) - 16^(2^k*(k + 1))), which is (2^x)^(2^x) * (2^x)^(2^x) = (2^(x+1))^(2^(x-k-1)) * (2^(x-k-1))^(2^(x+1)) with x = (k+1) * 2^(k+2) - 1.
LINKS
EXAMPLE
a(1) = 4^16 * 16^4 = 8^8 * 8^8 = 281474976710656
a(2) = 3^27 * 27^3 = 9^9 * 9^9 = 150094635296999121.
a(3) = 10^80 * 80^10 = 20^50 * 50^20 =
1073741824000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.
a(4) = 2^324 * 324^2 = 8^96 * 96^8 =
3587638001325335308951996778029678444520536159022591698847370237163925406936776358067367488612064034816.
a(5) = 8^144 * 144^8 = 16^96 * 96^16.
a(6) = 16^144 * 144^16 = 32^96 * 96^32.
MAPLE
N:= 10^1000: # for terms <= N
R:= 'R': A:= NULL:
for n from 2 to ilog2(N) do
for k from n do
v:= n^k * k^n;
if v > N then break fi;
if assigned(R[v]) then A:= A, v else R[v]:= 1 fi
od od:
sort([A]);
CROSSREFS
Cf. A146748.
Sequence in context: A352532 A179660 A080125 * A204350 A172592 A082589
KEYWORD
nonn
AUTHOR
Robert Israel, Oct 31 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 5 23:49 EDT 2024. Contains 372290 sequences. (Running on oeis4.)