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!)
A343687 a(0) = 1; a(n) = 4 * n * a(n-1) + Sum_{k=0..n-1} binomial(n,k) * (n-k-1)! * a(k). 2
1, 5, 51, 782, 15992, 408814, 12541010, 448834728, 18358297416, 844755218400, 43190363326992, 2429044756967520, 149029669269441456, 9905401062535389072, 709016063545908259248, 54375505616232613595904, 4448148376192382963462400, 386619861956492109750650496, 35580548688887294090357622912 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: 1 / (1 - 4*x + log(1 - x)).
a(n) ~ n! / ((4/c + 3 - c) * (1 - c/4)^n), where c = LambertW(4*exp(3)) = 3.2176447220005493578369738... - Vaclav Kotesovec, Apr 26 2021
MATHEMATICA
a[0] = 1; a[n_] := a[n] = 4 n a[n - 1] + Sum[Binomial[n, k] (n - k - 1)! a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 18}]
nmax = 18; CoefficientList[Series[1/(1 - 4 x + Log[1 - x]), {x, 0, nmax}], x] Range[0, nmax]!
CROSSREFS
Sequence in context: A187235 A343674 A318192 * A299435 A095839 A234290
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 26 2021
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 6 00:15 EDT 2024. Contains 374957 sequences. (Running on oeis4.)