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 A375684 #8 Aug 24 2024 06:04:58 %S A375684 1,0,-2,-3,16,90,-204,-4200,-5312,254016,1586160,-17970480,-294932736, %T A375684 790115040,54224747136,216483714720,-10481294822400,-137535688281600, %U A375684 1798183916660736,58769251106526720,-95282580797291520,-23811620975395061760,-203282679617698222080 %N A375684 Expansion of e.g.f. 1 / (1 - x * log(1 - x)). %F A375684 a(0) = 1; a(n) = -n! * Sum_{k=2..n} 1/(k-1) * a(n-k)/(n-k)!. %F A375684 a(n) = n! * Sum_{k=0..floor(n/2)} (-1)^k * k! * |Stirling1(n-k,k)|/(n-k)!. %o A375684 (PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-x*log(1-x)))) %o A375684 (PARI) a(n) = n!*sum(k=0, n\2, (-1)^k*k!*abs(stirling(n-k, k, 1))/(n-k)!); %Y A375684 Cf. A052830, A367878, A367879. %Y A375684 Cf. A375683. %K A375684 sign %O A375684 0,3 %A A375684 _Seiichi Manyama_, Aug 24 2024