The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A146748 Numbers of the form n^k * k^n, where n,k > 1. 3
16, 72, 256, 729, 800, 2304, 5184, 6272, 16384, 30375, 41472, 65536, 102400, 157464, 247808, 589824, 640000, 750141, 1384448, 3211264, 3359232, 5308416, 7372800, 9765625, 14348907, 16777216, 37879808, 39337984, 59049000, 84934656 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
2^2 * 2^2 = 16,
2^3 * 3^2 = 72.
MAPLE
N:= 10^20: # for terms <= N
S:= {}:
for n from 2 to ilog2(N) do
for k from n do
v:= n^k * k^n;
if v > N then break fi;
S:= S union {v};
od od:
sort(convert(S, list)); # Robert Israel, Oct 31 2023
CROSSREFS
Sequence in context: A232402 A212513 A279905 * A029872 A056633 A248464
KEYWORD
nonn
AUTHOR
Howard Berman (howard_berman(AT)hotmail.com), Nov 01 2008
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 June 1 21:15 EDT 2024. Contains 373029 sequences. (Running on oeis4.)