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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

1, 1, 6, 92, 2760, 134416, 9626976, 952336832, 124374587520, 20725471027456, 4290994105591296, 1080503158073449472, 325167279095248865280, 115252343303110680580096, 47519237579074974018134016, 22549702636577116941673152512, 12202485589681663721911088087040
Offset: 0

Views

Author

Paul D. Hanna, Dec 31 2012

Keywords

Examples

			E.g.f.: A(x) = 1 + x + 6*x^2/2! + 92*x^3/3! + 2760*x^4/4! + 134416*x^5/5! +...
where
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) +...
		

Crossrefs

Programs

  • 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)}
    for(n=0, 20, print1(a(n), ", "))

Formula

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
Showing 1-1 of 1 results.