login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Sum_{n>=0} a(n) * x^n / (n!)^2 = exp(-sqrt(x) * BesselI(1,2*sqrt(x))).
0

%I #18 Jul 28 2020 22:20:22

%S 1,-1,0,9,-4,-625,-906,145187,1350040,-71822385,-2093778910,

%T 49843036199,4422338360340,7491520000835,-11939082153832302,

%U -455740256735697165,33146485198521406064,4039886119274766333343,2019781328116371668154

%N Sum_{n>=0} a(n) * x^n / (n!)^2 = exp(-sqrt(x) * BesselI(1,2*sqrt(x))).

%F a(0) = 1; a(n) = -n * Sum_{k=0..n-1} binomial(n-1,k)^2 * a(k).

%t nmax = 18; CoefficientList[Series[Exp[-Sqrt[x] BesselI[1, 2 Sqrt[x]]], {x, 0, nmax}], x] Range[0, nmax]!^2

%t a[0] = 1; a[n_] := a[n] = -n Sum[Binomial[n - 1, k]^2 a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 18}]

%Y Cf. A003725, A292952, A302397, A336209, A336227.

%K sign

%O 0,4

%A _Ilya Gutkovskiy_, Jul 28 2020

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 22 08:33 EDT 2024. Contains 376097 sequences. (Running on oeis4.)