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”).

A358032
Expansion of e.g.f. (1 + log(1+x))/(1 - log(1+x) * (1 + log(1+x))).
2
1, 2, 4, 16, 66, 438, 2694, 25296, 204576, 2509728, 24912816, 381010320, 4440815472, 82150191264, 1089159690912, 23879423005440, 351430312958208, 9005004020293632, 144184020764472576, 4277182103330660352, 73227226213747521792, 2499666592623881921280
OFFSET
0,2
FORMULA
a(n) = Sum_{k=0..n} k! * Fibonacci(k+2) * Stirling1(n,k).
a(n) = A005444(n) + A005445(n).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace((1+log(1+x))/(1-log(1+x)*(1+log(1+x)))))
(PARI) a(n) = sum(k=0, n, k!*fibonacci(k+2)*stirling(n, k, 1));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 25 2022
STATUS
approved