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”).

A008788
a(n) = n^(n+2).
15
0, 1, 16, 243, 4096, 78125, 1679616, 40353607, 1073741824, 31381059609, 1000000000000, 34522712143931, 1283918464548864, 51185893014090757, 2177953337809371136, 98526125335693359375, 4722366482869645213696
OFFSET
0,3
FORMULA
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
See A008517 and A134991 for similar e.g.f.s. and A048993. - Tom Copeland, Oct 03 2011
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
EXAMPLE
G.f. = x + 16*x^2 + 243*x^3 + 4096*x^4 + 78125*x^5 + 1679616*x^6 + ...
MATHEMATICA
Table[n^(n+2), {n, 0, 20}] (* Vladimir Joseph Stephan Orlovsky, Dec 26 2010 *)
CoefficientList[Series[LambertW[-x] * (2*LambertW[-x]-1) / (1 + LambertW[-x])^5, {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Dec 20 2014 *)
PROG
(Magma) [n^(n+2): n in [0..20]]; // Vincenzo Librandi, Jun 11 2013
(PARI) vector(20, n, (n-1)^(n+1)) \\ G. C. Greubel, Nov 14 2017
(Sage) [n^(n+2) for n in (0..20)] # G. C. Greubel, Sep 11 2019
(GAP) List([0..20], n-> n^(n+2)); # G. C. Greubel, Sep 11 2019
KEYWORD
nonn,easy
STATUS
approved