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.

A221080 E.g.f.: Sum_{n>=0} Product_{k=1..n} tan((2*k-1)*x).

This page as a plain text file.
%I A221080 #11 Nov 02 2014 05:04:00
%S A221080 1,1,6,92,2760,134416,9626976,952336832,124374587520,20725471027456,
%T A221080 4290994105591296,1080503158073449472,325167279095248865280,
%U A221080 115252343303110680580096,47519237579074974018134016,22549702636577116941673152512,12202485589681663721911088087040
%N A221080 E.g.f.: Sum_{n>=0} Product_{k=1..n} tan((2*k-1)*x).
%H A221080 Vaclav Kotesovec, <a href="/A221080/b221080.txt">Table of n, a(n) for n = 0..150</a>
%F A221080 a(n) ~ sqrt(Pi) * 2^(n+1/2) * n^(2*n+1/2) / (exp(2*n) * G^(n+1/2)), where G = A006752 = 0.915965594177219... is Catalan's constant. - _Vaclav Kotesovec_, Nov 02 2014
%e A221080 E.g.f.: A(x) = 1 + x + 6*x^2/2! + 92*x^3/3! + 2760*x^4/4! + 134416*x^5/5! +...
%e A221080 where
%e A221080 A(x) = 1 + tan(x) + tan(x)*tan(3*x) + tan(x)*tan(3*x)*tan(5*x) + tan(x)*tan(3*x)*tan(5*x)*tan(7*x) + tan(x)*tan(3*x)*tan(5*x)*tan(7*x)*tan(9*x) +...
%o A221080 (PARI) {a(n)=local(X=x+x*O(x^n), Egf); Egf=sum(m=0, n, prod(k=1, m, tan((2*k-1)*X))); n!*polcoeff(Egf, n)}
%o A221080 for(n=0, 20, print1(a(n), ", "))
%Y A221080 Cf. A218260, A006752.
%K A221080 nonn
%O A221080 0,3
%A A221080 _Paul D. Hanna_, Dec 31 2012