cp's OEIS Frontend

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.

A346314 Sum_{n>=0} a(n) * x^n / (n!)^2 = Product_{n>=1} (1 - x^n / (n!)^2).

This page as a plain text file.
%I A346314 #5 Jul 13 2021 16:58:56
%S A346314 1,-1,-1,8,15,124,-3340,-9311,-102641,-1880812,150047424,692058289,
%T A346314 8916106452,167039809897,7435628931289,-1381243302601067,
%U A346314 -9407162843960561,-165954439670564988,-3103870029424074136,-123659189880256295879,-10671656695397289496160
%N A346314 Sum_{n>=0} a(n) * x^n / (n!)^2 = Product_{n>=1} (1 - x^n / (n!)^2).
%F A346314 a(0) = 1; a(n) = -(1/n) * Sum_{k=1..n} (binomial(n,k) * k!)^2 * k * ( Sum_{d|k} 1 / (d * ((k/d)!)^(2*d)) ) * a(n-k).
%t A346314 nmax = 20; CoefficientList[Series[Product[(1 - x^k/(k!)^2), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!^2
%t A346314 a[0] = 1; a[n_] := a[n] = -(1/n) Sum[(Binomial[n, k] k!)^2 k Sum[1/(d ((k/d)!)^(2 d)), {d, Divisors[k]}] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 20}]
%Y A346314 Cf. A183229, A183240, A185895, A346315.
%K A346314 sign
%O A346314 0,4
%A A346314 _Ilya Gutkovskiy_, Jul 13 2021