login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A330436
a(n) = n * n!! - Sum_{k=1..n-1} k!! * a(n-k).
0
1, 3, 4, 19, 31, 168, 323, 1859, 4072, 24403, 59423, 368488, 980123, 6275139, 17998264, 118858755, 364059999, 2478263856, 8045642683, 56418223739, 192980878976, 1392909382923, 4995715059111, 37083230363840, 138896979832131, 1059335618366171
OFFSET
1,2
COMMENTS
Logarithmic derivative of A006882.
FORMULA
L.g.f.: log(Sum_{k>=0} k!! * x^k).
MATHEMATICA
a[n_] := a[n] = n n!! - Sum[k!! a[n - k], {k, 1, n - 1}]; Table[a[n], {n, 1, 26}]
nmax = 26; CoefficientList[Series[Log[Sum[k!! x^k, {k, 0, nmax}]], {x, 0, nmax}], x] Range[0, nmax] // Rest
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 14 2019
STATUS
approved