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.

A213644 E.g.f. satisfies: A(x) = 1 + x*A(x)^2*exp(x*A(x)).

This page as a plain text file.
%I A213644 #25 Oct 27 2024 17:55:35
%S A213644 1,1,6,63,988,20725,546246,17364445,646910328,27652214313,
%T A213644 1334291800330,71749167806041,4255000637001588,275904038948566093,
%U A213644 19420072633921942542,1474700254793433800805,120174737260376219862256,10461031446553525766071249,968785652772129485926955538
%N A213644 E.g.f. satisfies: A(x) = 1 + x*A(x)^2*exp(x*A(x)).
%H A213644 Vincenzo Librandi, <a href="/A213644/b213644.txt">Table of n, a(n) for n = 0..200</a>
%F A213644 E.g.f. satisfies: A(x) = 1/(1 - x*A(x)*exp(x*A(x))).
%F A213644 E.g.f. satisfies: A(x-x^2*exp(x)) = 1/(1-x*exp(x)).
%F A213644 a(n) = 1/(n+1) * Sum_{k=0..n} k^(n-k)/(n-k)! * (n+k)!/k!.
%F A213644 a(n) = A213643(n+1)/(n+1).
%F A213644 Limit n->infinity (a(n)/n!)^(1/n) = r*(1+r)/(1-r) = 5.5854662015218413..., where r = 0.7603592340333989... is the root of the equation (1-r^2)/r^2 = exp((r-1)/r), same as for A213643. - _Vaclav Kotesovec_, Jul 15 2013
%F A213644 a(n) ~ (1+r)*sqrt(r/(1+2*r-r^2)) * n^(n-1) * (r*(1+r)/(1-r))^n / exp(n). - _Vaclav Kotesovec_, Dec 28 2013
%e A213644 E.g.f.: A(x) = 1 + x + 6*x^2/2! + 63*x^3/3! + 988*x^4/4! + 20725*x^5/5! +...
%e A213644 such that A(x-x^2*exp(x)) = 1/(1-x*exp(x)) where:
%e A213644 1/(1-x*exp(x)) = 1 + x + 4*x^2/2! + 21*x^3/3! + 148*x^4/4! + 1305*x^5/5! +...+ A006153(n)*x^n/n! +...
%t A213644 Flatten[{1,Table[1/(n+1)*Sum[k^(n-k)/(n-k)!*(n+k)!/k!,{k,0,n}],{n,1,20}]}] (* _Vaclav Kotesovec_, Jul 15 2013 *)
%o A213644 (PARI) {a(n)=1/(n+1)*sum(k=0, n, k^(n-k)/(n-k)! * (n+k)!/k! )}
%o A213644 (PARI) {a(n)=n!*polcoeff((1/x)*serreverse(x-x^2*exp(x+x*O(x^n))),n)}
%o A213644 for(n=0,25,print1(a(n),", "))
%Y A213644 Cf.  A213643, A006153, A161633.
%K A213644 nonn
%O A213644 0,3
%A A213644 _Paul D. Hanna_, Jun 17 2012