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 A008788 #56 Dec 29 2024 19:19:52 %S A008788 0,1,16,243,4096,78125,1679616,40353607,1073741824,31381059609, %T A008788 1000000000000,34522712143931,1283918464548864,51185893014090757, %U A008788 2177953337809371136,98526125335693359375,4722366482869645213696 %N A008788 a(n) = n^(n+2). %H A008788 Vincenzo Librandi, <a href="/A008788/b008788.txt">Table of n, a(n) for n = 0..200</a> %H A008788 Milan Janjic, <a href="http://www.pmfbl.org/janjic/">Enumerative Formulas for Some Functions on Finite Sets</a> %F A008788 E.g.f.(x): T*(1 + 2*T)*(1-T)^(-5); where T=T(x) is Euler's tree function (see A000169). - _Len Smiley_, Nov 17 2001 %F A008788 See A008517 and A134991 for similar e.g.f.s. and A048993. - _Tom Copeland_, Oct 03 2011 %F A008788 E.g.f.: d^2/dx^2 {x^2/(T(x)^2*(1-T(x)))}, where T(x) = Sum_{n>=1} n^(n-1)*x^n/n! is the tree function of A000169. - _Peter Bala_, Aug 05 2012 %e A008788 G.f. = x + 16*x^2 + 243*x^3 + 4096*x^4 + 78125*x^5 + 1679616*x^6 + ... %t A008788 Table[n^(n+2), {n,0,20}] (* _Vladimir Joseph Stephan Orlovsky_, Dec 26 2010 *) %t A008788 CoefficientList[Series[LambertW[-x] * (2*LambertW[-x]-1) / (1 + LambertW[-x])^5, {x, 0, 20}], x] * Range[0, 20]! (* _Vaclav Kotesovec_, Dec 20 2014 *) %o A008788 (Magma) [n^(n+2): n in [0..20]]; // _Vincenzo Librandi_, Jun 11 2013 %o A008788 (PARI) vector(20, n, (n-1)^(n+1)) \\ _G. C. Greubel_, Nov 14 2017 %o A008788 (Sage) [n^(n+2) for n in (0..20)] # _G. C. Greubel_, Sep 11 2019 %o A008788 (GAP) List([0..20], n-> n^(n+2)); # _G. C. Greubel_, Sep 11 2019 %Y A008788 Cf. A000169, A000272, A000312, A007778, A007830, A008785, A008786, A008787, A008789, A008790, A008791. %K A008788 nonn,easy %O A008788 0,3 %A A008788 _N. J. A. Sloane_