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!)
A048801 E.g.f. A(x) satisfies A(x) = 1 + x * A(exp(x) - 1). 9
1, 1, 2, 9, 64, 665, 9366, 170618, 3885120, 107728587, 3563482900, 138299564425, 6211739264688, 319190842232028, 18581124650376484, 1215078306042445710, 88602560159713837728, 7157866087368900148345, 636974235270930297047526 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n * A213357(n-1) if n>0. a(n+1) = (n+1) * Sum_{k=0..n} a(k) * stirling2(n, k). - Michael Somos, Jun 11 2012
EXAMPLE
1 + x + 2*x^2 + 9*x^3 + 64*x^4 + 665*x^5 + 9366*x^6 + 170618*x^7 + 3885120*x^8 + ...
MATHEMATICA
nmax=20; b = ConstantArray[0, nmax+1]; b[[1]]=1; Do[b[[n+2]] = (n+1)*Sum[b[[k+1]]*StirlingS2[n, k], {k, 0, n}], {n, 0, nmax-1}]; b (* Vaclav Kotesovec, Mar 12 2014 *)
PROG
(PARI) {a(n) = local(A); if( n<0, 0, A = 1 + O(x); for( k=1, n, A = 1 + x * subst( A, x, exp( x + A - A) - 1)); n! * polcoeff( A, n))} /* Michael Somos, Jun 11 2012 */
CROSSREFS
Cf. A003659.
Sequence in context: A232552 A038038 A368790 * A152915 A168383 A071300
KEYWORD
nonn,eigen
AUTHOR
Christian G. Bower, Mar 15 1999
EXTENSIONS
Description corrected by Michael Somos
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)