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!)
A353549 Expansion of e.g.f. log(1+3*x) * exp(x)/3. 4
0, 1, -1, 12, -104, 1289, -19605, 356488, -7541464, 182009385, -4935863537, 148600324124, -4918093868688, 177482897072545, -6936155749635541, 291836667412104072, -13152940374866178512, 632196357654491385521, -32280617841842744380161 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n-1} (-3)^(n-1-k) / ((n-k) * k!).
a(0) = 0, a(1) = 1, a(n) = (-3 * n + 4) * a(n-1) + 3 * (n-1) * a(n-2) + 1.
a(n) ~ -(-1)^n * (n-1)! * 3^(n-1) / exp(1/3). - Vaclav Kotesovec, Jun 08 2022
PROG
(PARI) my(N=20, x='x+O('x^N)); concat(0, Vec(serlaplace(log(1+3*x)*exp(x)/3)))
(PARI) a(n) = n!*sum(k=0, n-1, (-3)^(n-1-k)/((n-k)*k!));
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=0; v[2]=1; for(i=2, n, v[i+1]=(-3*i+4)*v[i]+3*(i-1)*v[i-1]+1); v;
CROSSREFS
Cf. A346398.
Sequence in context: A173835 A334168 A220111 * A094530 A157024 A051815
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 27 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 25 07:41 EDT 2024. Contains 371964 sequences. (Running on oeis4.)