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.

A193466 E.g.f.: Sum_{n>=0} x^n * Product_{k=1..n} cosh(k*x).

This page as a plain text file.
%I A193466 #12 Nov 02 2014 04:47:19
%S A193466 1,1,2,9,84,965,12750,225967,5241880,139776345,4272148890,
%T A193466 155402034491,6513558987540,304210965928597,15965624278036342,
%U A193466 941149313037711975,61160783460181817520,4356686998946564113457,340627068039399668576946,29015657457166019702796787
%N A193466 E.g.f.: Sum_{n>=0} x^n * Product_{k=1..n} cosh(k*x).
%H A193466 Vaclav Kotesovec, <a href="/A193466/b193466.txt">Table of n, a(n) for n = 0..150</a>
%F A193466 E.g.f.: Sum_{n>=0} (x/2)^n * exp(-n*(n+1)*x/2) * Product_{k=1..n} (1 + exp(2*k*x)).
%e A193466 E.g.f.: A(x) = 1 + x + 2*x^2/2! + 9*x^3/3! + 84*x^4/4! + 965*x^5/5! + 12750*x^6/6! + 225967*x^7/7! +...
%e A193466 where
%e A193466 A(x) = 1 + x*cosh(x) + x^2*cosh(x)*cosh(2*x) + x^3*cosh(x)*cosh(2*x)*cosh(3*x) + x^4*cosh(x)*cosh(2*x)*cosh(3*x)*cosh(4*x) +...
%e A193466 Also,
%e A193466 A(x) = 1 + x*exp(-x)*(1+exp(2*x))/2 + x^2*exp(-3*x)*(1+exp(2*x))*(1+exp(4*x))/2^2 +  x^3*exp(-6*x)*(1+exp(2*x))*(1+exp(4*x))*(1+exp(6*x))/2^3 +...
%o A193466 (PARI) {a(n)=local(X=x+x*O(x^n), Egf); Egf=sum(m=0, n, x^m*prod(k=1, m, cosh(k*X))); n!*polcoeff(Egf, n)}
%Y A193466 Cf. A177385, A193467, A193468.
%K A193466 nonn
%O A193466 0,3
%A A193466 _Paul D. Hanna_, Jul 27 2011