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!)
A357036 E.g.f. satisfies A(x) = (1 - x * A(x))^(log(1 - x * A(x)) / 2). 3
1, 0, 1, 3, 26, 230, 2794, 39564, 663606, 12712104, 275171106, 6632699040, 176309074644, 5123121177096, 161577261004860, 5497133655605760, 200683752698028924, 7825434930630743616, 324616635150708044796, 14273994548639305751040, 663205761925601097418488 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f. satisfies log(A(x)) = log(1 - x * A(x))^2 / 2.
a(n) = Sum_{k=0..floor(n/2)} (2*k)! * (n+1)^(k-1) * |Stirling1(n,2*k)|/(2^k * k!).
MATHEMATICA
m = 21; (* number of terms *)
A[_] = 0;
Do[A[x_] = (1 - x*A[x])^(Log[1 - x*A[x]]/2) + O[x]^m // Normal, {m}];
CoefficientList[A[x], x]*Range[0, m - 1]! (* Jean-François Alcover, Sep 12 2022 *)
PROG
(PARI) a(n) = sum(k=0, n\2, (2*k)!*(n+1)^(k-1)*abs(stirling(n, 2*k, 1))/(2^k*k!));
CROSSREFS
Sequence in context: A037671 A037797 A071846 * A067858 A052141 A062793
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 09 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 April 24 08:13 EDT 2024. Contains 371922 sequences. (Running on oeis4.)