login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A361053 Expansion of e.g.f. A(x) satisfying A(x) = Sum_{n>=0} (A(x)^n + 2)^n * x^n/n!. 8
1, 3, 15, 180, 3933, 122778, 5024727, 255694050, 15594132825, 1110807585090, 90665847445059, 8355178654847874, 859198582766876661, 97668423691415577666, 12177783763614287432847, 1654751006054203510476882, 243720706148230009547388465, 38730619011753683906970442626 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f. A(x) = Sum_{n>=0} a(n) * x^n/n! may be defined as follows.
(1) A(x) = Sum_{n>=0} (A(x)^n + 2)^n * x^n/n!.
(2) A(x) = Sum_{n>=0} A(x)^(n^2) * exp(2*x*A(x)^n) * x^n/n!.
a(n) = 0 (mod 3) for n > 0.
a(n) = Sum_{k=0..n} A361540(n,k) * 2^k. - Paul D. Hanna, Mar 20 2023
EXAMPLE
E.g.f.: A(x) = 1 + 3*x + 15*x^2/2! + 180*x^3/3! + 3933*x^4/4! + 122778*x^5/5! + 5024727*x^6/6! + 255694050*x^7/7! + 15594132825*x^8/8! +...
where the e.g.f. satisfies the following series identity:
A(x) = 1 + (A(x) + 2)*x + (A(x)^2 + 2)^2*x^2/2! + (A(x)^3 + 2)^3*x^3/3! + (A(x)^4 + 2)^4*x^4/4! + ... + (A(x)^n + 2)^n * x^n/n! + ...
and
A(x) = exp(2*x) + A(x)*exp(2*x*A(x))*x + A(x)^4*exp(2*x*A(x)^2)*x^2/2! + A(x)^9*exp(2*x*A(x)^3)*x^3/3! + A(x)^16*exp(2*x*A(x)^4)*x^4/4! + ... + A(x)^(n^2) * exp(2*x*A(x)^n) * x^n/n! + ...
PROG
(PARI) /* E.g.f.: Sum_{n>=0} (A(x)^n + 2)^n * x^n/n! */
{a(n) = my(A = 1); for(i=1, n, A = sum(m=0, n, (A^m + 2 +x*O(x^n))^m * x^m/m! )); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) /* E.g.f.: Sum_{n>=0} A(x)^(n^2) * exp(2*x*A(x)^n) * x^n/n! */
{a(n) = my(A=1); for(i=1, n, A = sum(m=0, n, (A +x*O(x^n))^(m^2) * exp(2*x*A^m +x*O(x^n)) * x^m/m! )); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Cf. A361540.
Sequence in context: A077792 A153079 A173301 * A260079 A363506 A364075
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 28 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 3 05:06 EDT 2024. Contains 373966 sequences. (Running on oeis4.)