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!)
A336228 a(0) = 1; a(n) = Sum_{k=0..n-1} binomial(n,k)^2 * (n-k) * a(k). 1

%I #4 Jul 13 2020 07:53:33

%S 1,1,6,75,1684,59005,2977566,204512875,18346977608,2083115635065,

%T 291996210173410,49525220811387871,9996609976117991436,

%U 2368117724291275331869,650613686811158069472942,205196311013650099853516115,73633144885479474283911225616

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

%F a(n) = (n!)^2 * [x^n] 1 / (1 - sqrt(x) * BesselI(1,2*sqrt(x))).

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

%t nmax = 16; CoefficientList[Series[1/(1 - Sqrt[x] BesselI[1, 2 Sqrt[x]]), {x, 0, nmax}], x] Range[0, nmax]!^2

%Y Cf. A006153, A102221.

%K nonn

%O 0,3

%A _Ilya Gutkovskiy_, Jul 12 2020

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 23 11:22 EDT 2024. Contains 371913 sequences. (Running on oeis4.)