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!)
A354413 Expansion of e.g.f. 1/(2 - exp(x))^x. 5
1, 0, 2, 6, 36, 250, 2100, 20594, 231168, 2923722, 41149140, 637972522, 10804678632, 198480649250, 3930963078588, 83500876635570, 1893745346613216, 45672635292831322, 1167233799092342148, 31510575263852229242, 896028017040096045720 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A052862(k) * binomial(n-1,k-1) * a(n-k).
a(n) ~ n! / (Gamma(log(2)) * 2^log(2) * n^(1 - log(2)) * log(2)^(n + log(2))). - Vaclav Kotesovec, Jun 08 2022
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(2-exp(x))^x))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, j*sum(k=1, j-1, (k-1)!*stirling(j-1, k, 2))*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A345747 A075096 A347897 * A177373 A109284 A060178
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 25 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 09:18 EDT 2024. Contains 371935 sequences. (Running on oeis4.)