cp's OEIS Frontend

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.

A371342 E.g.f. satisfies A(x) = log(1 + x/(1 - A(x))).

This page as a plain text file.
%I A371342 #17 Mar 19 2024 09:26:20
%S A371342 0,1,1,5,38,404,5514,91916,1810080,41119704,1058505600,30450551592,
%T A371342 968121778128,33709242522864,1275738359407680,52141501470591360,
%U A371342 2288907292892799744,107405692000948859904,5365016291068305805440,284225212617080543066880
%N A371342 E.g.f. satisfies A(x) = log(1 + x/(1 - A(x))).
%H A371342 <a href="/index/Res#revert">Index entries for reversions of series</a>
%F A371342 E.g.f.: Series_Reversion( (1 - x) * (exp(x) - 1) ).
%F A371342 a(n) = Sum_{k=1..n} (n+k-2)!/(n-1)! * Stirling1(n,k).
%F A371342 a(n) ~ LambertW(1)^n * n^(n-1) / (sqrt(1 + LambertW(1)) * exp(n) * (1 - LambertW(1))^(2*n-1)). - _Vaclav Kotesovec_, Mar 19 2024
%t A371342 Table[Sum[(n+k-2)! / (n-1)! * StirlingS1[n,k], {k,1,n}], {n, 0, 20}] (* _Vaclav Kotesovec_, Mar 19 2024 *)
%o A371342 (PARI) my(N=20, x='x+O('x^N)); concat(0, Vec(serlaplace(serreverse((1-x)*(exp(x)-1)))))
%o A371342 (PARI) a(n) = sum(k=1, n, (n+k-2)!/(n-1)!*stirling(n, k, 1));
%Y A371342 Cf. A370922, A371326.
%Y A371342 Cf. A052842, A052892.
%K A371342 nonn
%O A371342 0,4
%A A371342 _Seiichi Manyama_, Mar 19 2024