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

A355105
E.g.f. A(x) satisfies A(x) = 1 + 3 * x * A(log(1+x)).
2
1, 3, 18, 135, 1044, 6210, -5994, -760347, -3009960, 261689616, 1960394400, -220644396522, -1043258760828, 366570209524896, -3109452797977470, -972076070389224105, 36160406771040130320, 3274635904971823559880, -331428842765036684941320
OFFSET
0,2
FORMULA
a(0) = 1; a(n) = 3 * n * Sum_{k=0..n-1} Stirling1(n-1,k) * a(k).
a(n) = 3 * n * A355097(n-1) for n>0.
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=3*i*sum(j=0, i-1, stirling(i-1, j, 1)*v[j+1])); v;
CROSSREFS
Cf. A355097.
Sequence in context: A168072 A251733 A355103 * A095776 A114178 A005159
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jun 19 2022
STATUS
approved