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 A008785 #50 Oct 25 2022 19:32:01 %S A008785 1,5,36,343,4096,59049,1000000,19487171,429981696,10604499373, %T A008785 289254654976,8649755859375,281474976710656,9904578032905937, %U A008785 374813367582081024,15181127029874798299,655360000000000000000,30041942495081691894741,1457498964228107529355264 %N A008785 a(n) = (n+4)^n. %H A008785 Vincenzo Librandi, <a href="/A008785/b008785.txt">Table of n, a(n) for n = 0..200</a> %F A008785 E.g.f.(x) for b(n) = n^(n-4) = a(n-4): T - (7/8)*T^2 + (11/36)*T^3 - (1/24)*T^4, where T = T(x) is Euler's tree function (see A000169). - _Len Smiley_, Nov 17 2001 %F A008785 E.g.f.: LambertW(-x)^4/(x^4*(1+LambertW(-x))). - _Vladeta Jovovic_, Nov 07 2003 %F A008785 E.g.f.: (1/3)*d/dx(LambertW(-x)/(-x))^3. - _Wolfdieter Lang_, Oct 25 2022 %t A008785 Table[(n+4)^n,{n,0,20}] (* _Vladimir Joseph Stephan Orlovsky_, Dec 26 2010 *) %o A008785 (Magma) [(n+4)^n: n in [0..20]]; // _Vincenzo Librandi_, Jun 11 2013 %o A008785 (PARI) vector(20, n, (n+3)^(n-1)) \\ _G. C. Greubel_, Nov 09 2017 %o A008785 (Sage) [(n+4)^n for n in (0..20)] # _G. C. Greubel_, Sep 11 2019 %o A008785 (GAP) List([0..20], n-> (n+4)^n); # _G. C. Greubel_, Sep 11 2019 %Y A008785 Cf. A000169, A000272, A000312, A007778, A007830, A008786, A008787, A008788, A008789, A008790, A008791. %K A008785 nonn,easy %O A008785 0,2 %A A008785 _N. J. A. Sloane_