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!)
A295238 Expansion of e.g.f. 2/(1 + sqrt(1 - 4*x*exp(x))). 6
1, 1, 6, 57, 796, 14785, 344046, 9640225, 316255416, 11896233345, 504918768250, 23874754106401, 1244712973780068, 70940791877082049, 4388291507415513894, 292823509879910802465, 20966854494419642792176, 1603540841320336494905089, 130464295561360336835272050 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Inverse binomial transform of A194471.
LINKS
FORMULA
E.g.f.: 1/(1 - x*exp(x)/(1 - x*exp(x)/(1 - x*exp(x)/(1 - x*exp(x)/(1 - ...))))), a continued fraction.
a(n) ~ sqrt(2*(1 + LambertW(1/4))) * n^(n-1) / ((LambertW(1/4))^n * exp(n)). - Vaclav Kotesovec, Nov 18 2017
a(n) = n! * Sum_{k=0..n} k^(n-k) * binomial(2*k+1,k)/( (2*k+1)*(n-k)! ) = n! * Sum_{k-0..n} k^(n-k) * A000108(k)/(n-k)!. - Seiichi Manyama, Aug 15 2023
MAPLE
a:=series(2/(1+sqrt(1-4*x*exp(x))), x=0, 19): seq(n!*coeff(a, x, n), n=0..18); # Paolo P. Lava, Mar 27 2019
MATHEMATICA
nmax = 18; CoefficientList[Series[2/(1 + Sqrt[1 - 4 x Exp[x]]), {x, 0, nmax}], x] Range[0, nmax]!
nmax = 18; CoefficientList[Series[1/(1 + ContinuedFractionK[-x Exp[x], 1, {k, 1, nmax}]), {x, 0, nmax}], x] Range[0, nmax]!
Table[Sum[(-1)^(n - k) Binomial[n, k] k! Sum[(m + 1)^(k - m - 1) Binomial[2 m, m]/(k - m)!, {m, 0, k}], {k, 0, n}], {n, 0, 18}]
PROG
(PARI) a(n) = n!*sum(k=0, n, k^(n-k)*binomial(2*k, k)/((k+1)*(n-k)!)); \\ Seiichi Manyama, Aug 15 2023
CROSSREFS
Sequence in context: A032119 A294511 A242817 * A256016 A361291 A145170
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 18 2017
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)