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.

A219228 O.g.f. satisfies: A(x) = Sum_{n>=0} A(x)^n * (n^3*x)^n/n! * exp(-n^3*x*A(x)).

This page as a plain text file.
%I A219228 #6 May 26 2025 23:51:37
%S A219228 1,1,32,3119,625710,214333471,112105268136,83149960883200,
%T A219228 83014425998481126,107334569041127441462,174471878478682785998864,
%U A219228 348242875992753988109552778,837327855535084109106340786272,2387108242583316451939303856237037
%N A219228 O.g.f. satisfies: A(x) = Sum_{n>=0} A(x)^n * (n^3*x)^n/n! * exp(-n^3*x*A(x)).
%C A219228 Compare to the o.g.f. of A217913:
%C A219228 Sum_{n>=0} (n^3)^n*exp(-n^3*x)*x^n/n! = Sum_{n>=0} Stirling2(3*n,n)*x^n.
%F A219228 O.g.f. satisfies: A(x) = Sum_{n>=0} Stirling2(3*n,n) * x^n * A(x)^n.
%e A219228 O.g.f.: A(x) = 1 + x + 32*x^2 + 3119*x^3 + 625710*x^4 + 214333471*x^5 +...
%e A219228 where
%e A219228 A(x) = 1 + x*A(x)*exp(-x*A(x)) + 2^6*x^2*A(x)^2/2!*exp(-8*x*A(x)) + 3^9*x^3*A(x)^3/3!*exp(-27*x*A(x)) + 4^12*x^4*A(x)^4/4!*exp(-64*x*A(x)) + 5^15*x^5*A(x)^5/5!*exp(-125*x*A(x)) +...
%e A219228 simplifies to a power series in x with integer coefficients.
%e A219228 G.f. A(x) satisfies A(x) = G(x*A(x)) where G(x) = A(x/G(x)) begins:
%e A219228 G(x) = 1 + x + 31*x^2 + 3025*x^3 + 611501*x^4 + 210766920*x^5 + 110687251039*x^6 +...+ Stirling2(3*n,n)*x^n +...
%o A219228 (PARI) {a(n)=local(A=1);for(i=1,n,A=sum(m=0, n, (m^3*x*A)^m/m!*exp(-m^3*x*A+x*O(x^n))));polcoeff(A, n)}
%o A219228 for(n=0,21,print1(a(n),", "))
%Y A219228 Cf. A217913, A219184, A217900, A218681, A218672.
%K A219228 nonn
%O A219228 0,3
%A A219228 _Paul D. Hanna_, Nov 15 2012