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.

A318192 a(n) = U_{n}(n)/(n+1) where U_{n}(x) is a Chebyshev polynomial of the second kind.

Original entry on oeis.org

1, 1, 5, 51, 781, 16005, 411881, 12776743, 464278585, 19350109449, 910126036909, 47694593157211, 2755988277318277, 174100457124362509, 11937317942278298961, 882942450221936166735, 70077737629245663437041, 5940877531422707027770385
Offset: 0

Views

Author

Seiichi Manyama, Jan 07 2019

Keywords

Crossrefs

Cf. A323118.

Programs

  • PARI
    {a(n) = polchebyshev(n, 2, n)/(n+1)}
    
  • PARI
    {a(n) = sum(k=0, n\2, binomial(n, 2*k)*(n^2-1)^k*n^(n-2*k)/(2*k+1))}

Formula

a(n) = A323118(n)/(n+1).
a(n) = Sum_{k=0..floor(n/2)} (1/(2*k+1)) * binomial(n,2*k)*(n^2-1)^k*n^(n-2*k).