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!)
A125229 a(n) = j such that i^j is maximized subject to i+j = n (i >= 0, j >= 0). 1
0, 0, 0, 1, 2, 2, 3, 4, 4, 5, 6, 7, 7, 8, 9, 9, 10, 11, 12, 12, 13, 14, 15, 15, 16, 17, 18, 18, 19, 20, 21, 21, 22, 23, 24, 25, 25, 26, 27, 28, 28, 29, 30, 31, 32, 32, 33, 34, 35, 35, 36, 37, 38, 39, 39, 40, 41, 42, 42, 43, 44, 45, 46, 46, 47, 48, 49, 50, 50, 51, 52 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
For n = 2, there is not a unique maximum because 2^0 = 1^1; we choose j = 0. - T. D. Noe, Apr 08 2014
LINKS
EXAMPLE
If the sum is 5, the powers are: 0^5, 1^4, 2^3, 3^2, 4^1 and 5^0. The highest is 3^2 so a(5) = 2.
MATHEMATICA
Join[{0, 0}, Table[SortBy[{#[[1]], #[[2]], #[[1]]^#[[2]]}&/@Flatten[ Permutations /@ IntegerPartitions[n, {2}], 1], Last][[-1, 2]], {n, 3, 80}]] (* Harvey P. Dale, Sep 01 2013 *)
Join[{0, 0, 0}, Flatten[Table[s = Table[(n - k)^k, {k, n}]; Position[s, Max[s]], {n, 3, 80}]]] (* T. D. Noe, Apr 08 2014 *)
CROSSREFS
Cf. A056155.
Sequence in context: A064488 A049472 A368131 * A213855 A272206 A122797
KEYWORD
easy,nonn
AUTHOR
EXTENSIONS
a(0) added by T. D. Noe, Apr 08 2014
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 July 28 12:14 EDT 2024. Contains 374691 sequences. (Running on oeis4.)