[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A343674
a(0) = 1; a(n) = 4 * n * a(n-1) + Sum_{k=0..n-1} binomial(n,k) * a(k).
4
1, 5, 51, 781, 15947, 407021, 12466251, 445452813, 18191122219, 835737327661, 42661645147403, 2395510523568845, 146739531459316587, 9737742346694258157, 695911661109898805323, 53286006304099668950413, 4352120920347139791200171, 377674509364714706139413933, 34702277449656625185428239755
OFFSET
0,2
FORMULA
E.g.f.: 1 / (2 * (1 - 2*x) - exp(x)).
a(n) ~ n! * 2^(n-1) / ((1 + LambertW(exp(1/2)/4)) * (1 - 2*LambertW(exp(1/2)/4))^(n+1)). - Vaclav Kotesovec, Jun 20 2022
MATHEMATICA
a[0] = 1; a[n_] := a[n] = 4 n a[n - 1] + Sum[Binomial[n, k] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 18}]
nmax = 18; CoefficientList[Series[1/(2 (1 - 2 x) - Exp[x]), {x, 0, nmax}], x] Range[0, nmax]!
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 25 2021
STATUS
approved