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

A367922
Expansion of e.g.f. 1/(1 - x + 2*log(1 - x)).
2
1, 3, 20, 202, 2724, 45928, 929288, 21936864, 591822912, 17962293408, 605744322048, 22470338716032, 909323575700352, 39864781715364864, 1882110048700328448, 95205899353680970752, 5137022051563160623104, 294501790029090740576256
OFFSET
0,2
FORMULA
a(0) = 1; a(n) = n * a(n-1) + 2 * Sum_{k=1..n} (k-1)! * binomial(n,k) * a(n-k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=i*v[i]+2*sum(j=1, i, (j-1)!*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
Cf. A367845.
Sequence in context: A379035 A244491 A295100 * A052590 A081209 A196560
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 05 2023
STATUS
approved