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!)
A356785 E.g.f. satisfies log(A(x)) = x * (exp(x*A(x)) - 1) * A(x). 12
1, 0, 2, 3, 64, 365, 7356, 85687, 1920752, 34821369, 905128300, 22172123171, 672107454888, 20552960420005, 721088019634724, 26257726364294895, 1053711696230404576, 44336326818388565105, 2010106841636689325532, 95747319823049127621019 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} (n+1)^(k-1) * Stirling2(n-k,k)/(n-k)!.
MATHEMATICA
nmax = 19; A[_] = 1;
Do[A[x_] = Exp[x*(Exp[x*A[x]]-1)*A[x]] + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 04 2024 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\2, (n+1)^(k-1)*stirling(n-k, k, 2)/(n-k)!);
CROSSREFS
Sequence in context: A037426 A004854 A356797 * A015169 A041953 A099080
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 27 2022
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 July 12 13:24 EDT 2024. Contains 374247 sequences. (Running on oeis4.)