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 A177382 #11 Oct 02 2020 15:59:49 %S A177382 1,1,4,38,656,17776,695104,37049648,2581673216,227817246976, %T A177382 24829660693504,3275474443371008,514345822537650176, %U A177382 94806411271686270976,20269838348763427323904,4975513260049237751994368 %N A177382 E.g.f.: Sum_{n>=0} Product_{k=1..n} tan(k*x). %C A177382 Compare to an e.g.f. of A000182, the tangent numbers: %C A177382 Sum_{n>=0} A000182(n)*x^n/n! = Sum_{n>=0} Product_{k=1..n} tanh(k*x). %H A177382 Vaclav Kotesovec, <a href="/A177382/b177382.txt">Table of n, a(n) for n = 0..150</a> %F A177382 From _Vaclav Kotesovec_, Nov 02 2014: (Start) %F A177382 a(n) ~ (n!)^2 / (sqrt(2) * G^(n+1)). %F A177382 a(n) ~ Pi * sqrt(2) * n^(2*n+1) / (exp(2*n) * G^(n+1)), where G = A006752 = 0.915965594177219... is Catalan's constant. %F A177382 (End) %e A177382 E.g.f.: 1 + x + 4*x^2/2! + 38*x^3/3! + 656*x^4/4! + 17776*x^5/5! +... %e A177382 where %e A177382 A(x) = 1 + tan(x) + tan(x)*tan(2*x) + tan(x)*tan(2*x)*tan(3*x) + tan(x)*tan(2*x)*tan(3*x)*tan(4*x) + tan(x)*tan(2*x)*tan(3*x)*tan(4*x)*tan(5*x) +... %t A177382 nmax = 20; CoefficientList[Series[Sum[Product[Tan[k*x], {k, 1, n}], {n, 0, nmax}], {x, 0, nmax}], x] * Range[0, nmax]! (* _Vaclav Kotesovec_, Oct 02 2020 *) %o A177382 (PARI) {a(n)=local(X=x+x*O(x^n),Egf);Egf=sum(m=0,n,prod(k=1,m,tan(k*X)));n!*polcoeff(Egf,n)} %Y A177382 Cf. A000182, A006752, A335618. %K A177382 nonn %O A177382 0,3 %A A177382 _Paul D. Hanna_, May 11 2010