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!)
A328004 Expansion of e.g.f. 1 / (1 - Sum_{k>=1} binomial(2*k,k) * x^k / k!). 2
1, 2, 14, 140, 1854, 30692, 609812, 14135816, 374486782, 11161030388, 369597971484, 13463177200376, 535000400076660, 23031528320070584, 1067766010124118200, 53038672987708575920, 2810204538580052967422, 158202066016882053997204, 9429962256806049820343564 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: 1 / (2 - exp(2*x) * BesselI(0,2*x)).
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k) * A000984(k) * a(n-k).
a(n) ~ n! / ((4 + 2*exp(2*r)*BesselI(1, 2*r)) * r^(n+1)), where r = 0.30197758068953447339121214393882523964817455046976015309132... is the root of the equation exp(2*r) * BesselI(0, 2*r) = 2. - Vaclav Kotesovec, Oct 02 2019
MATHEMATICA
nmax = 18; CoefficientList[Series[1/(2 - Exp[2 x] BesselI[0, 2 x]), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k] Binomial[2 k, k] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 18}]
PROG
(PARI) my(x='x+O('x^25)); Vec(serlaplace(1/(2 - exp(2*x) * (besseli(0, 2*x))))) \\ Michel Marcus, Oct 02 2019
CROSSREFS
Sequence in context: A303395 A301271 A245267 * A361638 A271564 A100510
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 01 2019
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.)