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!)
A355508 E.g.f. satisfies log(A(x)) = x^2 * (exp(x * A(x)) - 1) * A(x). 1
1, 0, 0, 6, 12, 20, 1830, 15162, 82376, 3326472, 59467050, 678585710, 20553790092, 563969783676, 10776243950654, 318310813941330, 10988438698692240, 303144002003606672, 9910024990673571666, 392381835437286982998, 14072003919511407720020 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} (n-k+1)^(k-1) * Stirling2(n-2*k,k)/(n-2*k)!.
MATHEMATICA
m = 21; (* number of terms *)
A[_] = 0;
Do[A[x_] = Exp[x^2*(Exp[x*A[x]] - 1)*A[x]] + O[x]^m // Normal, {m}];
CoefficientList[A[x], x]*Range[0, m - 1]! (* Jean-François Alcover, Sep 12 2022 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\3, (n-k+1)^(k-1)*stirling(n-2*k, k, 2)/(n-2*k)!);
CROSSREFS
Cf. A356962.
Sequence in context: A356949 A362892 A371304 * A371139 A371145 A370989
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 07 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 May 3 09:32 EDT 2024. Contains 372207 sequences. (Running on oeis4.)