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.

A362771 E.g.f. satisfies A(x) = exp( x * (1+x) * A(x) ).

This page as a plain text file.
%I A362771 #18 Feb 16 2025 08:34:05
%S A362771 1,1,5,34,353,4756,80107,1617358,38145473,1029745576,31326858611,
%T A362771 1060716408874,39571357618465,1612919873514028,71321521181852411,
%U A362771 3400790769764598886,173950205958460627073,9501239617356541012432,551961456374529522954595
%N A362771 E.g.f. satisfies A(x) = exp( x * (1+x) * A(x) ).
%H A362771 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/LambertW-Function.html">Lambert W-Function</a>.
%F A362771 E.g.f.: exp( -LambertW(-x * (1+x)) ).
%F A362771 a(n) = n! * Sum_{k=0..n} (k+1)^(k-1) * binomial(k,n-k)/k!.
%F A362771 a(n) ~ sqrt(2 + 8*exp(-1) - 2*sqrt(1 + 4*exp(-1))) * 2^(n-1) * n^(n-1) / ((sqrt(1 + 4*exp(-1)) - 1)^n * exp(n - 3/2)). - _Vaclav Kotesovec_, May 03 2023
%t A362771 nmax = 20; A[_] = 1;
%t A362771 Do[A[x_] = Exp[x*(1 + x)*A[x]] + O[x]^(nmax+1) // Normal, {nmax}];
%t A362771 CoefficientList[A[x], x]*Range[0, nmax]! (* _Jean-François Alcover_, Mar 04 2024 *)
%o A362771 (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(-lambertw(-x*(1+x)))))
%Y A362771 Cf. A052868, A125500.
%K A362771 nonn
%O A362771 0,3
%A A362771 _Seiichi Manyama_, May 02 2023