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

A368450
Expansion of e.g.f. exp(x) / (1 + log(1 - 3*x)/3).
2
1, 2, 8, 61, 695, 10310, 187024, 4002131, 98593949, 2746565218, 85333213856, 2924626915529, 109588276298995, 4456269669580742, 195418762093000328, 9192090435429906463, 461630086359185798777, 24651183861530752336994, 1394716088179233110318104
OFFSET
0,2
FORMULA
a(n) = 1 + Sum_{k=1..n} 3^(k-1) * (k-1)! * binomial(n,k) * a(n-k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); for(i=0, n, v[i+1]=1+sum(j=1, i, 3^(j-1)*(j-1)!*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
Cf. A368453.
Sequence in context: A139017 A322012 A188324 * A370913 A208356 A188489
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 24 2023
STATUS
approved