login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A202152 Expansion of e.g.f.: exp(x*(1+x)^x) 4
1, 1, 1, 7, 13, 101, 361, 2269, 18201, 48817, 1436401, -2283269, 157443397, -826037939, 21355181849, -160556822999, 3084325024561, -22223879489055, 291212769688417, 2180748026158255, -118745486165378819, 4884619264768661461, -140063412525642293687, 4020051993317128467029 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n)=n!*sum(m=1..n, sum(k=0..n-m, (m^k*stirling1(n-m-k,k))/(n-m-k)!)/m!), n>0, a(0)=1.
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Exp[x (1+x)^x], {x, 0, nn}], x] Range[ 0, nn]!] (* Harvey P. Dale, Oct 13 2019 *)
PROG
(Maxima)
a(n):=if n=0 then 1 else n!*sum(sum((m^k*stirling1(n-m-k, k))/(n-m-k)!, k, 0, n-m)/m!, m, 1, n)
CROSSREFS
Sequence in context: A253333 A039687 A001544 * A136720 A323468 A035030
KEYWORD
sign
AUTHOR
Vladimir Kruchinin, Dec 12 2011
EXTENSIONS
Definition clarified by Harvey P. Dale, Oct 13 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)