This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A372513 #4 May 04 2024 15:00:46 %S A372513 0,1,2,16,264,7296,302720,17587200,1362399360,135693537280, %T A372513 16893684928512,2570631845806080,469393033744588800, %U A372513 101294080603625226240,25502237392032633323520,7408331513180811911233536,2459543337577081650719784960,925435622656059412145504256000 %N A372513 Sum_{n>=0} a(n) * x^n / (n!)^2 = -log(BesselJ(0,2*sqrt(2*x))) / 2. %F A372513 a(0) = 0; a(n) = (-2)^(n-1) - (1/n) * Sum_{k=1..n-1} binomial(n,k)^2 * (-2)^k * (n-k) * a(n-k). %F A372513 a(n) = 2^(n-1) * A002190(n). %t A372513 nmax = 17; CoefficientList[Series[-Log[BesselJ[0, 2 Sqrt[2 x]]]/2, {x, 0, nmax}], x] Range[0, nmax]!^2 %t A372513 a[0] = 0; a[n_] := a[n] = (-2)^(n - 1) - (1/n) Sum[Binomial[n, k]^2 (-2)^k (n - k) a[n - k], {k, 1, n - 1}]; Table[a[n], {n, 0, 17}] %Y A372513 Cf. A002190. %K A372513 nonn %O A372513 0,3 %A A372513 _Ilya Gutkovskiy_, May 04 2024