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.

A090753 Coefficients of power series A(x) such that n-th term of A(x)^n = n!*n*x^(n-1), for n>0.

This page as a plain text file.
%I A090753 #19 Nov 23 2024 03:52:53
%S A090753 1,2,2,4,16,88,600,4800,43680,443296,4949920,60217408,792134528,
%T A090753 11200176128,169375195136,2728019576832,46626359376384,
%U A090753 842947307334144,16073131554826752,322403473258650624,6786861273524305920
%N A090753 Coefficients of power series A(x) such that n-th term of A(x)^n = n!*n*x^(n-1), for n>0.
%C A090753 At n=4 the 4th term of A(x)^4 is 4!*4x^3 = 96*x^3, as demonstrated by A(x)^4 = 1 + 8*x + 32*x^2 + 96*x^3 + 296*x^4 + ... See also A075834.
%H A090753 Vaclav Kotesovec, <a href="/A090753/b090753.txt">Table of n, a(n) for n = 0..445</a>
%F A090753 a(n) = Sum_{j=2..(n-2)} (j-1)*a(j)*a(n-j) for n>=2, with a(0)=1, a(1)=2.
%F A090753 Sum_{j>=0} a(j)*A090238(n-1, k+j-1) = A090238(n, k).
%F A090753 G.f. satisfies: A(x) = 1 + 2*Sum_{n>=1} n^n * x^n / (A(x) + n*x)^n. - _Paul D. Hanna_, Feb 04 2013
%F A090753 a(n) ~ exp(-2) * n! * n. - _Vaclav Kotesovec_, Nov 23 2024
%o A090753 (PARI) a(n)=if(n<0,0,polcoeff(x/serreverse(sum(k=1,n+1,k!*x^k,x^2*O(x^n))),n)) /* _Michael Somos_, Feb 14 2004 */
%o A090753 (PARI) a(n)=local(A=1+x); for(i=1, n, A=1+2*sum(m=1, n, m^m*x^m/(A+m*x+x*O(x^n))^m)); polcoeff(A, n)
%o A090753 for(n=0, 30, print1(a(n), ", ")) \\ _Paul D. Hanna_, Feb 04 2013
%Y A090753 Cf. A075834, A211207, A136633.
%K A090753 nonn
%O A090753 0,2
%A A090753 _Philippe Deléham_, Feb 06 2004