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 A003320 M1198 #73 Jul 02 2025 16:01:54 %S A003320 1,1,1,2,4,9,27,81,256,1024,4096,16384,78125,390625,1953125,10077696, %T A003320 60466176,362797056,2176782336,13841287201,96889010407,678223072849, %U A003320 4747561509943,35184372088832,281474976710656,2251799813685248 %N A003320 a(n) = max_{k=0..n} k^(n-k). %C A003320 For n > 0, a(n+1) = largest term of row n in triangles A051129 and A247358. - _Reinhard Zumkeller_, Sep 14 2014 %D A003320 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence). %D A003320 I. Tomescu, Introducere in Combinatorica. Editura Tehnica, Bucharest, 1972, p. 231. %H A003320 Seiichi Manyama, <a href="/A003320/b003320.txt">Table of n, a(n) for n = 0..599</a> (terms 0..100 from T. D. Noe). %H A003320 D. Easdown, <a href="http://www.maths.usyd.edu.au/u/pubs/publist/preprints/2015/easdown-19.pdf">Minimal faithful permutation and transformation representations of groups and semigroups</a>, Contemporary Math. (1992), Vol. 131 (Part 3), 75-84. %H A003320 R. Gray and J. D. Mitchell, <a href="http://dx.doi.org/10.1016/j.disc.2007.08.075">Largest subsemigroups of the full transformation monoid</a>, Discrete Math., 308 (2008), 4801-4810. %H A003320 W. S. Gray and M. Thitsa, <a href="https://doi.org/10.1109/SSST.2013.6524939">System Interconnections and Combinatorial Integer Sequences</a>, in: System Theory (SSST), 2013 45th Southeastern Symposium on, Date of Conference: 11-11 March 2013, Digital Object Identifier: 10.1109/SSST.2013.6524939. %H A003320 R. K. Guy, <a href="/A003320/a003320.pdf">Letter to N. J. A. Sloane, Mar 1974</a> %H A003320 I. Tomescu, <a href="/A003320/a003320_4.pdf">Excerpts from "Introducese in Combinatorica" (1972)</a>, pp. 230-1, 44-5, 128-9. (Annotated scanned copy) %F A003320 a(n) = A056155(n-1)^(n - A056155(n-1)), for n >= 2. - _Ridouane Oudra_, Dec 09 2020 %e A003320 a(5) = max(5^0, 4^1, 3^2, 2^3, 1^4, 0^5) = max(1,4,9,8,1,0) = 9. %t A003320 Join[{1},Max[#]&/@Table[k^(n-k),{n,25},{k,n}]] (* _Harvey P. Dale_, Jun 20 2011 *) %o A003320 (Haskell) %o A003320 a003320 n = maximum $ zipWith (^) [0 .. n] [n, n-1 ..] %o A003320 -- _Reinhard Zumkeller_, Jun 24 2013 %o A003320 (PARI) a(n) = vecmax(vector(n+1, k, (k-1)^(n-k+1))); \\ _Michel Marcus_, Jun 13 2017 %Y A003320 Cf. A003992, A031435, A056155. %K A003320 nonn,easy,nice %O A003320 0,4 %A A003320 _N. J. A. Sloane_, _R. K. Guy_ %E A003320 Easdown reference from Michail Kats (KatsMM(AT)info.sgu.ru) %E A003320 More terms from _James Sellers_, Aug 21 2000