This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A125229 #21 Feb 21 2015 09:22:15 %S A125229 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, %T A125229 19,20,21,21,22,23,24,25,25,26,27,28,28,29,30,31,32,32,33,34,35,35,36, %U A125229 37,38,39,39,40,41,42,42,43,44,45,46,46,47,48,49,50,50,51,52 %N A125229 a(n) = j such that i^j is maximized subject to i+j = n (i >= 0, j >= 0). %C A125229 For n = 2, there is not a unique maximum because 2^0 = 1^1; we choose j = 0. - _T. D. Noe_, Apr 08 2014 %H A125229 T. D. Noe, <a href="/A125229/b125229.txt">Table of n, a(n) for n = 0..1000</a> %e A125229 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. %t A125229 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 *) %t A125229 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 *) %Y A125229 Cf. A056155. %K A125229 easy,nonn %O A125229 0,5 %A A125229 _Sébastien Dumortier_, Jan 15 2007 %E A125229 a(0) added by _T. D. Noe_, Apr 08 2014