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!)
A308847 Expansion of e.g.f. exp(-2*x) / BesselI(0,2*x). 3
1, -2, 2, 4, -14, -52, 284, 1496, -10958, -74372, 681652, 5656616, -62226116, -610306712, 7832965352, 88645228304, -1300254163918, -16676932459172, 275196007522436, 3944890321174664, -72330003541955564, -1145979961718846152, 23112838345877865752, 401070175407076000624, -8824400094691629670724 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
E.g.f. is inverse of e.g.f. for A000984 (central binomial coefficients).
LINKS
FORMULA
E.g.f.: 1 / Sum_{k>=0} binomial(2*k,k)*x^k/k!.
MATHEMATICA
nmax = 24; CoefficientList[Series[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, 24}]
PROG
(PARI) my(x='x+O('x^30)); Vec(serlaplace(exp(-2*x) / besseli(0, 2*x))) \\ Michel Marcus, Jul 02 2019
CROSSREFS
Sequence in context: A019072 A019073 A153959 * A006205 A360194 A268073
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jun 28 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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)