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!)
A356906 E.g.f. satisfies A(x)^(A(x)^2) = 1/(1 - x)^x. 1
1, 0, 2, 3, -28, -150, 2154, 26040, -322512, -7872984, 77570280, 3752301960, -22068935736, -2542757920560, 1422846762960, 2302464947491800, 14860063644794880, -2653728770258072640, -41790782141846648640, 3739260018343338345600 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} (-2*k+1)^(k-1) * |Stirling1(n-k,k)|/(n-k)!.
E.g.f.: A(x) = Sum_{k>=0} (-2*k+1)^(k-1) * (-x * log(1-x))^k / k!.
E.g.f.: A(x) = exp( LambertW(-2 * x * log(1-x))/2 ).
E.g.f.: A(x) = ( -2 * x * log(1-x)/LambertW(-2 * x * log(1-x)) )^(1/2).
PROG
(PARI) a(n) = n!*sum(k=0, n\2, (-2*k+1)^(k-1)*abs(stirling(n-k, k, 1))/(n-k)!);
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (-2*k+1)^(k-1)*(-x*log(1-x))^k/k!)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(lambertw(-2*x*log(1-x))/2)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace((-2*x*log(1-x)/lambertw(-2*x*log(1-x)))^(1/2)))
CROSSREFS
Sequence in context: A357267 A074233 A354611 * A371115 A206592 A126266
KEYWORD
sign
AUTHOR
Seiichi Manyama, Sep 03 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 August 12 17:11 EDT 2024. Contains 375113 sequences. (Running on oeis4.)