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!)
A354313 Expansion of e.g.f. 1/(1 - x/2 * (exp(2 * x) - 1)). 3
1, 0, 2, 6, 40, 280, 2496, 25424, 297984, 3920256, 57349120, 922611712, 16193375232, 307896882176, 6304666798080, 138318662000640, 3236895083167744, 80483201605795840, 2118875812456366080, 58882581280649117696, 1722441885524719042560 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=2..n} k * 2^(k-2) * binomial(n,k) * a(n-k).
a(n) = n! * Sum_{k=0..floor(n/2)} 2^(n-2*k) * k! * Stirling2(n-k,k)/(n-k)!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-x/2*(exp(2*x)-1))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=2, i, j*2^(j-2)*binomial(i, j)*v[i-j+1])); v;
(PARI) a(n) = n!*sum(k=0, n\2, 2^(n-2*k)*k!*stirling(n-k, k, 2)/(n-k)!);
CROSSREFS
Sequence in context: A264152 A333631 A337071 * A351739 A098854 A056787
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 23 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 12:19 EDT 2024. Contains 374247 sequences. (Running on oeis4.)