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!)
A353547 Expansion of e.g.f. -log(1-3*x) * exp(x)/3. 4
0, 1, 5, 30, 256, 2969, 43665, 776194, 16159304, 385353945, 10353609253, 309401268494, 10177974023448, 365446593201793, 14220922741157249, 596150920955286402, 26783000840591098288, 1283751796983110068817, 65389160400251577565797 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
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 - 2) * a(n-1) - 3 * (n-1) * a(n-2) + 1.
a(n) ~ (n-1)! * exp(1/3) * 3^(n-1). - 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-2)*v[i]-3*(i-1)*v[i-1]+1); v;
CROSSREFS
Cf. A346395.
Essentially partial sums of A010845.
Sequence in context: A346681 A279155 A245247 * A199131 A342389 A344525
KEYWORD
nonn
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 August 23 06:45 EDT 2024. Contains 375375 sequences. (Running on oeis4.)