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

A353822
Product_{n>=1} (1 + x^n/n!)^a(n) = exp(-x)/(1 - x).
3
0, 1, 2, 9, 24, 110, 720, 5985, 39200, 343224, 3628800, 41295870, 479001600, 6130959120, 87104969952, 1318070979225, 20922789888000, 354344089779680, 6402373705728000, 121882240625961816, 2432849766865689600, 51041049953430700800, 1124000727777607680000
OFFSET
1,3
MATHEMATICA
nn = 23; f[x_] := Product[(1 + x^n/n!)^a[n], {n, 1, nn}]; sol = SolveAlways[0 == Series[f[x] - Exp[-x]/(1 - x), {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 08 2022
STATUS
approved