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!)
A354264 Expansion of e.g.f. 1/(1 + 4 * log(1-x)). 4
1, 4, 36, 488, 8824, 199456, 5410208, 171209664, 6192052800, 251937937920, 11389639660032, 566394573855744, 30726758349800448, 1805828538127687680, 114293350061315678208, 7750480651439579529216, 560615413313367534698496, 43085423893717998388740096 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: 1/(1 + 4 * log(1-x)).
a(0) = 1; a(n) = 4 * Sum_{k=1..n} (k-1)! * binomial(n,k) * a(n-k).
a(n) = Sum_{k=0..n} 4^k * k! * |Stirling1(n, k)|.
a(n) ~ n! * exp(n/4) / (4 * (exp(1/4) - 1)^(n+1)). - Vaclav Kotesovec, Jun 04 2022
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1+4*log(1-x))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=4*sum(j=1, i, (j-1)!*binomial(i, j)*v[i-j+1])); v;
(PARI) a(n) = sum(k=0, n, 4^k*k!*abs(stirling(n, k, 1)));
CROSSREFS
Column k=4 of A320079.
Sequence in context: A370927 A094417 A349504 * A138435 A366337 A008546
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)