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!)
A355112 Expansion of e.g.f. 4 / (5 - 4*x - exp(4*x)). 6
1, 2, 12, 112, 1376, 21056, 386688, 8286720, 202958848, 5592199168, 171203895296, 5765504860160, 211811563929600, 8429932686999552, 361312700788375552, 16592261047219388416, 812749365813312487424, 42299637489384965537792, 2330989060564353634271232 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = n * a(n-1) + Sum_{k=1..n} binomial(n,k) * 4^(k-1) * a(n-k).
a(n) ~ n! / ((1 + LambertW(exp(5))) * ((5 - LambertW(exp(5)))/4)^(n+1)). - Vaclav Kotesovec, Jun 19 2022
MATHEMATICA
nmax = 18; CoefficientList[Series[4/(5 - 4 x - Exp[4 x]), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = n a[n - 1] + Sum[Binomial[n, k] 4^(k - 1) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 18}]
CROSSREFS
Sequence in context: A009232 A349311 A218222 * A292187 A124213 A365558
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 19 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 23 12:08 EDT 2024. Contains 371912 sequences. (Running on oeis4.)