login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A008786
a(n) = (n+5)^n.
10
1, 6, 49, 512, 6561, 100000, 1771561, 35831808, 815730721, 20661046784, 576650390625, 17592186044416, 582622237229761, 20822964865671168, 799006685782884121, 32768000000000000000, 1430568690241985328321, 66249952919459433152512, 3244150909895248285300369
OFFSET
0,2
LINKS
FORMULA
E.g.f.(x) for b(n) = n^(n-5) = a(n-5): T - (15/16)*T^2 + (85/216)T^3 - (25/288)*T^4 + (1/120)*T^5, where T=T(x) is Euler's tree function. - Len Smiley, Nov 17 2001
E.g.f.: LambertW(-x)^5/((-x)^5*(1+LambertW(-x))). - Vladeta Jovovic, Nov 07 2003
E.g.f.: (1/4)*d/dx(LambertW(-x)/(-x))^4). - Wolfdieter Lang, Oct 25 2022
MATHEMATICA
Table[(n+5)^n, {n, 0, 20}] (* Vladimir Joseph Stephan Orlovsky, Dec 26 2010 *)
PROG
(Magma) [(n+5)^n: n in [0..20]]; // Vincenzo Librandi, Jun 11 2013
(PARI) vector(20, n, (n+4)^(n-1)) \\ G. C. Greubel, Sep 11 2019
(Sage) [(n+5)^n for n in (0..20)] # G. C. Greubel, Sep 11 2019
(GAP) List([0..20], n-> (n+5)^n); # G. C. Greubel, Sep 11 2019
CROSSREFS
KEYWORD
nonn,easy
STATUS
approved