The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A346394 Expansion of e.g.f. -log(1 - x) * exp(2*x). 4
0, 1, 5, 20, 78, 324, 1520, 8336, 53872, 405600, 3492416, 33798016, 362543104, 4264455168, 54540715008, 753246711808, 11168972683264, 176937613586432, 2982069587042304, 53271637651996672, 1005385746384846848, 19987620914387812352, 417489079682758213632 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n-1} 2^k / ((n-k) * k!).
a(n) = Sum_{k=0..n} binomial(n,k) * A002104(k).
a(n) ~ exp(2) * (n-1)!. - Vaclav Kotesovec, Aug 09 2021
a(0) = 0, a(1) = 1, a(n) = (n+1) * a(n-1) - 2 * (n-1) * a(n-2) + 2^(n-1). - Seiichi Manyama, May 27 2022
MATHEMATICA
nmax = 22; CoefficientList[Series[-Log[1 - x] Exp[2 x], {x, 0, nmax}], x] Range[0, nmax]!
Table[n! Sum[2^k/((n - k) k!), {k, 0, n - 1}], {n, 0, 22}]
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=0; v[2]=1; for(i=2, n, v[i+1]=(i+1)*v[i]-2*(i-1)*v[i-1]+2^(i-1)); v; \\ Seiichi Manyama, May 27 2022
CROSSREFS
Sequence in context: A271887 A079737 A028814 * A079820 A275907 A117422
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 15 2021
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 June 1 02:06 EDT 2024. Contains 373008 sequences. (Running on oeis4.)