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 A344037 #58 Jun 12 2024 01:11:47 %S A344037 1,-1,3,-1,27,119,1203,11759,136587,1771559,25562403,405657119, %T A344037 7022893947,131714582999,2660335750803,57570797728079, %U A344037 1328913670528107,32592691757218439,846383665814342403,23200396829831840639,669421949061096575067,20281206249626017421879 %N A344037 Expansion of e.g.f.: exp(-2*x) / (2 - exp(x)). %H A344037 G. C. Greubel, <a href="/A344037/b344037.txt">Table of n, a(n) for n = 0..420</a> %F A344037 a(n) = Sum_{k=0..n} binomial(n,k) * (-2)^(n-k) * A000670(k). %F A344037 a(n) = Sum_{k=0..n} (-1)^k * Stirling2(n,k) * k! * A008619(k). %F A344037 a(n) = Sum_{k>=0} (k - 2)^n / 2^(k+1). %F A344037 a(n) = (-2)^n + Sum_{k=0..n-1} binomial(n,k) * a(k). %F A344037 a(n) ~ n! / (8 * log(2)^(n+1)). - _Vaclav Kotesovec_, Aug 15 2021 %t A344037 nmax = 21; CoefficientList[Series[Exp[-2 x]/(2 - Exp[x]), {x, 0, nmax}], x] Range[0, nmax]! %t A344037 Table[HurwitzLerchPhi[1/2, -n, -2]/2, {n, 0, 21}] %t A344037 a[n_] := a[n] = (-2)^n + Sum[Binomial[n, k] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 21}] %o A344037 (Magma) %o A344037 R<x>:=PowerSeriesRing(Rationals(), 40); %o A344037 Coefficients(R!(Laplace( Exp(-2*x)/(2-Exp(x)) ))); // _G. C. Greubel_, Jun 11 2024 %o A344037 (SageMath) %o A344037 def A344037_list(prec): %o A344037 P.<x> = PowerSeriesRing(QQ, prec) %o A344037 return P( exp(-2*x)/(2-exp(x)) ).egf_to_ogf().list() %o A344037 A344037_list(40) # _G. C. Greubel_, Jun 11 2024 %Y A344037 Cf. A000670, A007047, A008619, A052841, A330603, A346208. %K A344037 sign %O A344037 0,3 %A A344037 _Ilya Gutkovskiy_, Aug 01 2021