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.

A360950 Expansion of g.f. A(x) satisfying A(x) = Sum_{n>=0} d^n/dx^n x^(2*n) * A(x)^n / n!.

This page as a plain text file.
%I A360950 #17 Feb 27 2023 05:19:24
%S A360950 1,2,12,108,1240,16932,264740,4631320,89270316,1875586380,42610756408,
%T A360950 1040307155304,27157913296228,754950111249488,22267948484559720,
%U A360950 694746226969477744,22863695087986373968,791675941860401322852,28776089467457429038620,1095679176790207081120360
%N A360950 Expansion of g.f. A(x) satisfying A(x) = Sum_{n>=0} d^n/dx^n x^(2*n) * A(x)^n / n!.
%H A360950 Paul D. Hanna, <a href="/A360950/b360950.txt">Table of n, a(n) for n = 0..200</a>
%F A360950 G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies:
%F A360950 (1) A(x) = Sum_{n>=0} d^n/dx^n x^(2*n) * A(x)^n / n!.
%F A360950 (2) A(x) = d/dx Series_Reversion(x - x^2*A(x)).
%F A360950 (3) B(x - x^2*A(x)) = x where B(x) = x * exp( Sum_{n>=1} d^(n-1)/dx^(n-1) x^(2*n-1) * A(x)^n / n! ) is the g.f. of A229619.
%F A360950 (4) a(n) = (n+1) * A229619(n+1) for n >= 0.
%F A360950 a(n) ~ c * n! * n^alfa / LambertW(1)^n, where alfa = 3*LambertW(1) + 1/(1 + LambertW(1)) = 2.33953361459... and c = 0.1926079501120681239... - _Vaclav Kotesovec_, Feb 27 2023
%e A360950 G.f.: A(x) = 1 + 2*x + 12*x^2 + 108*x^3 + 1240*x^4 + 16932*x^5 + 264740*x^6 + 4631320*x^7 + 89270316*x^8 + 1875586380*x^9 + ...
%e A360950 where
%e A360950 A(x) = 1 + (d/dx x^2*A(x)) + (d^2/dx^2 x^4*A(x)^2)/2! + (d^3/dx^3 x^6*A(x)^3)/3! + (d^4/dx^4 x^8*A(x)^4)/4! + (d^5/dx^5 x^10*A(x)^5)/5! + (d^6/dx^6 x^12*A(x)^6)/6! + ... + (d^n/dx^n x^(2*n)*A(x)^n)/n! + ...
%e A360950 Related series.
%e A360950 Let B(x) = Series_Reversion(x - x^2*A(x)), which begins
%e A360950 B(x) = x + x^2 + 4*x^3 + 27*x^4 + 248*x^5 + 2822*x^6 + 37820*x^7 + 578915*x^8 + 9918924*x^9 + 187558638*x^10 + ... + A229619(n)*x^n + ...
%e A360950 then A(x) = B'(x) and
%e A360950 B(x) = x * exp( x*A(x) + (d/dx x^3*A(x)^2)/2! + (d^2/dx^2 x^5*A(x)^3)/3! + (d^3/dx^3 x^7*A(x)^4)/4! + (d^4/dx^4 x^9*A(x)^5)/5! + (d^5/dx^5 x^11*A(x)^6)/6! + ... + (d^(n-1)/dx^(n-1) x^(2*n-1)*A(x)^n)/n! + ... ).
%o A360950 (PARI) {Dx(n, F) = my(D=F); for(i=1, n, D=deriv(D)); D}
%o A360950 {a(n) = my(A=1); for(i=1, n, A = sum(m=0, n, Dx(m, x^(2*m)*A^m/m!)) +O(x^(n+1))); polcoeff(A, n)}
%o A360950 for(n=0, 25, print1(a(n), ", "))
%Y A360950 Cf. A229619, A356848, A088714, A303063.
%K A360950 nonn
%O A360950 0,2
%A A360950 _Paul D. Hanna_, Feb 26 2023