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 A340789 #52 Jan 23 2021 17:33:08 %S A340789 0,1,3,28,447,11176,402335,19714416,1261722623,102199532464, %T A340789 10219953246399,1236614342814280,178072465365256319, %U A340789 30094246646728317912,5898472342758750310751,1327156277120718819918976,339752006942904017899257855,98188330006499261172885520096 %N A340789 a(n) = (n!)^2 * Sum_{k=1..n} (-1)^(k+1) / (k!)^2. %F A340789 Sum_{n>=0} a(n) * x^n / (n!)^2 = (1 - BesselJ(0,2*sqrt(x))) / (1 - x). %F A340789 a(0) = 0; a(n) = n^2 * a(n-1) - (-1)^n. %t A340789 Table[n!^2 Sum[(-1)^(k + 1)/k!^2, {k, 1, n}], {n, 0, 17}] %t A340789 nmax = 17; CoefficientList[Series[(1 - BesselJ[0, 2 Sqrt[x]])/(1 - x), {x, 0, nmax}], x] Range[0, nmax]!^2 %Y A340789 Cf. A002467, A006040, A066998, A073701. %K A340789 nonn %O A340789 0,3 %A A340789 _Ilya Gutkovskiy_, Jan 23 2021