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!)
A354263 Expansion of e.g.f. 1/(1 + 3 * log(1-x)). 7
1, 3, 21, 222, 3132, 55242, 1169262, 28873800, 814870584, 25871762016, 912684973968, 35416732159872, 1499286521185776, 68757945743286576, 3395829155786528976, 179693346163010491008, 10142543588881013369856, 608262031900883147262336 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = 3 * Sum_{k=1..n} (k-1)! * binomial(n,k) * a(n-k).
a(n) = Sum_{k=0..n} 3^k * k! * |Stirling1(n, k)|.
a(n) ~ n! * exp(n/3) / (3 * (exp(1/3) - 1)^(n+1)). - Vaclav Kotesovec, Jun 04 2022
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1+3*log(1-x))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=3*sum(j=1, i, (j-1)!*binomial(i, j)*v[i-j+1])); v;
(PARI) a(n) = sum(k=0, n, 3^k*k!*abs(stirling(n, k, 1)));
CROSSREFS
Column k=3 of A320079.
Cf. A335531.
Sequence in context: A107864 A267657 A303057 * A369795 A113663 A082545
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 21 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 September 7 13:22 EDT 2024. Contains 375730 sequences. (Running on oeis4.)