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.

A173194 a(n) = -sin^2 (2*n*arccos n) = - sin^2 (2*n*arcsin n).

Original entry on oeis.org

0, 0, 9408, 384199200, 54471499791360, 20405558846592060000, 16793517249722147195701440, 26730228454204365035835498694848, 75019085697452515216001640927169855488, 346154755746154620929434271983392498083891520
Offset: 0

Views

Author

Artur Jasinski, Feb 12 2010

Keywords

Crossrefs

Programs

  • Maple
    A173194 := proc(n) ((n+sqrt(n^2-1))^(2*n)-(n-sqrt(n^2-1))^(2*n))^2 ; expand(%/4) ; simplify(%) ; end proc: # R. J. Mathar, Feb 26 2011
  • Mathematica
    Round[Table[ -N[Sin[2 n ArcSin[n]], 100]^2, {n, 0, 15}]] (* Artur Jasinski *)
    Table[FullSimplify[(-1/2 (x - Sqrt[ -1 + x^2])^(2 x) + 1/2 (x + Sqrt[ -1 + x^2])^(2 x))^2], {x, 0, 7}] (* Artur Jasinski, Feb 17 2010 *)
    Table[(n^2-1)*ChebyshevU[2*n-1, n]^2, {n, 0, 20}] (* Vaclav Kotesovec, Jan 05 2019 *)
  • PARI
    {a(n) = (n^2-1)*n^2*(sum(k=0, n-1, binomial(2*n, 2*k+1)*(n^2-1)^(n-1-k)*n^(2*k)))^2} \\ Seiichi Manyama, Jan 05 2019
    
  • PARI
    {a(n) = (n^2-1)*polchebyshev(2*n-1, 2, n)^2} \\ Seiichi Manyama, Jan 05 2019

Formula

4*a(n) = ( (n+sqrt(n^2-1))^(2*n) - (n-sqrt(n^2-1))^(2*n) )^2. - Artur Jasinski, Feb 17 2010
From Seiichi Manyama, Jan 05 2019: (Start)
a(n) = (n^2-1) * n^2 * (Sum_{k=0..n-1} binomial(2*n,2*k+1)*(n^2-1)^(n-1-k)*n^(2*k))^2.
For n > 0, a(n) = (n^2-1) * U_{2*n-1}(n)^2 where U_{n}(x) is a Chebyshev polynomial of the second kind. (End)
a(n) ~ 2^(4*n - 2) * n^(4*n). - Vaclav Kotesovec, Jan 05 2019

Extensions

a(9) from Seiichi Manyama, Jan 05 2019