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.
%I A162654 #6 Jul 15 2014 12:30:24 %S A162654 1,1,0,3,24,65,480,8827,72576,657729,13754880,215578451,2884992000, %T A162654 62280478273,1404449120256,27032417472075,640338738708480, %U A162654 17729894860794497,453894468727209984,12438629293065953059 %N A162654 E.g.f. satisfies: A(x) = 1 + x*cosh(x*A(x)). %H A162654 Vaclav Kotesovec, <a href="/A162654/b162654.txt">Table of n, a(n) for n = 0..380</a> %F A162654 a(n) = n!*Sum_{k=0..n} C(n-k+1,k)/(n-k+1) * Sum_{j=0..k} C(k,j)/2^k*(2j-k)^(n-k)/(n-k)!. %F A162654 Let A(x)^m = Sum_{n>=0} a(n,m)*x^n/n!, then %F A162654 a(n,m) = n!*Sum_{k=0..n} m*C(n-k+m,k)/(n-k+m) * Sum_{j=0..k} C(k,j)/2^k*(2j-k)^(n-k)/(n-k)!. %F A162654 a(n) ~ n^(n-1) * sqrt((2*s-1)/(s-1)) / (exp(n) * r^(n+1)), where r = 0.6184142504137720756... and s = 2.731257206829781545... are roots of the system of equations r^2*sinh(r*s) = 1, s = 1 + r*cosh(r*s). - _Vaclav Kotesovec_, Jul 15 2014 %e A162654 E.g.f.: A(x) = 1 + x + 3*x^3/3! + 24*x^4/4! + 65*x^5/5! + 480*x^6/6! +... %o A162654 (PARI) {a(n,m=1)=n!*sum(k=0,n,m*binomial(n-k+m,k)/(n-k+m)*sum(j=0,k,binomial(k,j)/2^k*(2*j-k)^(n-k)/(n-k)!))} %Y A162654 Cf. A162653. %K A162654 nonn %O A162654 0,4 %A A162654 _Paul D. Hanna_, Jul 09 2009