OFFSET
0,3
COMMENTS
Logarithmic transform of A001563.
LINKS
Robert Israel, Table of n, a(n) for n = 0..450
FORMULA
E.g.f.: log(1 + Sum_{k>=1} k * x^k).
D-finite with recurrence a(n+3) = n*(n+1)*(n+2)*a(n) - 2*(n+2)*(n+1)*a(n+1) + 2*(n+2)*a(n+2). - Robert Israel, Jan 16 2023
MAPLE
b:= proc(n) option remember; n*n! end:
a:= proc(n) option remember; `if`(n=0, 0, b(n)-
add(binomial(n, j)*j*b(n-j)*a(j), j=1..n-1)/n)
end:
seq(a(n), n=0..25); # Alois P. Heinz, Oct 04 2019
MATHEMATICA
nmax = 25; CoefficientList[Series[Log[1 + x/(1 - x)^2], {x, 0, nmax}], x] Range[0, nmax]!
Join[{0}, Table[2 (n - 1)! (1 - Cos[Pi n/3]), {n, 1, 25}]]
PROG
(PARI) my(x='x+O('x^30)); concat(0, Vec(serlaplace(log(1 + x / (1 - x)^2)))) \\ Michel Marcus, Oct 04 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 03 2019
STATUS
approved