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

A368452
Expansion of e.g.f. exp(-x) / (1 + log(1 - 3*x)/3).
1
1, 0, 4, 29, 351, 5288, 96844, 2084787, 51569293, 1440778760, 44860522140, 1540040695961, 57780774428299, 2351977512750864, 103224895866407236, 4858737892917301679, 244142543354321358297, 13043294582176082455088, 738250195765281754969108
OFFSET
0,3
FORMULA
a(n) = (-1)^n + 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)^i+sum(j=1, i, 3^(j-1)*(j-1)!*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A137646 A231498 A168602 * A000798 A135485 A210526
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 24 2023
STATUS
approved