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.

A361214 E.g.f. satisfies A(x) = exp( 3*x*A(x) / (1+x) ).

This page as a plain text file.
%I A361214 #23 Feb 16 2025 08:34:05
%S A361214 1,3,21,288,5841,158148,5370003,219641922,10518990129,577629889848,
%T A361214 35788733371179,2470154920005798,187970878034549001,
%U A361214 15636177199793409444,1411635193678825868979,137469669176542404342042,14364540773583252035937633
%N A361214 E.g.f. satisfies A(x) = exp( 3*x*A(x) / (1+x) ).
%H A361214 Winston de Greef, <a href="/A361214/b361214.txt">Table of n, a(n) for n = 0..338</a>
%H A361214 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/LambertW-Function.html">Lambert W-Function</a>.
%F A361214 a(n) = (-1)^n * n! * Sum_{k=0..n} (-3)^k * (k+1)^(k-1) * binomial(n-1,n-k)/k!.
%F A361214 E.g.f.: exp ( -LambertW(-3*x/(1+x)) ).
%F A361214 E.g.f.: -(1+x)/(3*x) * LambertW(-3*x/(1+x)).
%t A361214 Table[(-1)^n*n!*Sum[(-3)^k*(k + 1)^(k - 1)*Binomial[n - 1, n - k]/k!, {k, 0, n}], {n, 0, 20}] (* _Wesley Ivan Hurt_, May 25 2024 *)
%o A361214 (PARI) a(n) = (-1)^n*n!*sum(k=0, n, (-3)^k*(k+1)^(k-1)*binomial(n-1, n-k)/k!);
%o A361214 (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(-lambertw(-3*x/(1+x)))))
%o A361214 (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(-(1+x)/(3*x)*lambertw(-3*x/(1+x))))
%Y A361214 Cf. A335945, A361213.
%Y A361214 Cf. A361069, A361194.
%K A361214 nonn
%O A361214 0,2
%A A361214 _Seiichi Manyama_, Mar 04 2023