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.

A330436 a(n) = n * n!! - Sum_{k=1..n-1} k!! * a(n-k).

This page as a plain text file.
%I A330436 #5 Dec 14 2019 19:24:09
%S A330436 1,3,4,19,31,168,323,1859,4072,24403,59423,368488,980123,6275139,
%T A330436 17998264,118858755,364059999,2478263856,8045642683,56418223739,
%U A330436 192980878976,1392909382923,4995715059111,37083230363840,138896979832131,1059335618366171
%N A330436 a(n) = n * n!! - Sum_{k=1..n-1} k!! * a(n-k).
%C A330436 Logarithmic derivative of A006882.
%F A330436 L.g.f.: log(Sum_{k>=0} k!! * x^k).
%t A330436 a[n_] := a[n] = n n!! - Sum[k!! a[n - k], {k, 1, n - 1}]; Table[a[n], {n, 1, 26}]
%t A330436 nmax = 26; CoefficientList[Series[Log[Sum[k!! x^k, {k, 0, nmax}]], {x, 0, nmax}], x] Range[0, nmax] // Rest
%Y A330436 Cf. A003319, A004208, A006882, A233824, A307064.
%K A330436 nonn
%O A330436 1,2
%A A330436 _Ilya Gutkovskiy_, Dec 14 2019