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!)
A340450 E.g.f. A(x) satisfies: A(x) = Sum_{n>=0} x^n * exp(x^(n+1)*A(x)). 2
1, 2, 7, 46, 413, 5036, 77137, 1423276, 30854105, 767958832, 21582020861, 676165597724, 23366484667429, 882971185469296, 36221091773679737, 1603064437712963236, 76138734522477332273, 3862934017045567765568, 208508213805864941722357, 11930655030027036640979500 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The e.g.f. A(x) of this sequence is motivated by the following identity:
Sum_{n>=0} p^n * exp(q*r^n) = Sum_{n>=0} (q^n/n!) / (1 - p*r^n) ;
here, p = x, q = x*A(x), and r = x.
LINKS
FORMULA
E.g.f. A(x) satisfies the following relations.
(1) A(x) = Sum_{n>=0} x^n * exp( x^(n+1)*A(x) ).
(2) A(x) = Sum_{n>=0} (x^n/n!) * A(x)^n / (1 - x^(n+1)).
EXAMPLE
E.g.f.: A(x) = 1 + 2*x + 7*x^2/2! + 46*x^3/3! + 413*x^4/4! + 5036*x^5/5! + 77137*x^6/6! + 1423276*x^7/7! + 30854105*x^8/8! + 767958832*x^9/9! + ...
where
A(x) = exp(x*A(x)) + x*exp(x^2*A(x)) + x^2*exp(x^3*A(x)) + x^3*exp(x^4*A(x)) + x^4*exp(x^5*A(x)) + x^5*exp(x^6*A(x)) + ...
also
A(x) = 1/(1 - x) + x*A(x)/(1 - x^2) + (x^2/2!)*A(x)^2/(1 - x^3) + (x^3/3!)*A(x)^3/(1 - x^4) + (x^4/4!)*A(x)^4/(1 - x^5) + ...
PROG
(PARI) {a(n) = my(A=1); for(i=1, n, A = sum(m=0, n, x^m * exp(x^(m+1)*A +x*O(x^n)) )); n!*polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n) = my(A=1); for(i=1, n, A = sum(m=0, n, (x^m/m!)*A^m / (1 - x^(m+1) +x*O(x^n)) )); n!*polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Cf. A340357.
Sequence in context: A089006 A019004 A027328 * A351917 A349640 A111842
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 07 2021
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 May 9 01:26 EDT 2024. Contains 372341 sequences. (Running on oeis4.)