This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A354278 #6 May 23 2022 05:37:56 %S A354278 0,1,2,3,24,50,720,4095,35840,267624,3628800,35724150,479001600, %T A354278 5240149200,82614884352,1188272460375,20922789888000,320893244672000, %U A354278 6402373705728000,113803149223980216,2379913632645120000,46396417566975840000,1124000727777607680000 %N A354278 Product_{n>=1} 1 / (1 - a(n)*x^n/n!) = exp(-x) / (1 - x). %F A354278 a(1) = 0; a(n) = (n-1)! * (1 - Sum_{d|n, 1 < d < n} d * (a(d)/d!)^(n/d)). %t A354278 a[1] = 0; a[n_] := a[n] = (n - 1)! (1 - Sum[d (a[d]/d!)^(n/d), {d, Divisors[n]~Complement~{1, n}}]); Table[a[n], {n, 1, 23}] %Y A354278 Cf. A000166, A006973, A137852, A353822, A354277. %K A354278 nonn %O A354278 1,3 %A A354278 _Ilya Gutkovskiy_, May 22 2022