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.

A123276 Discriminant of the Chebyshev polynomial of first kind of degree 2^n.

Original entry on oeis.org

1, 8, 131072, 9444732965739290427392, 994646472819573284310764496293641680200912301594695434880927953786318994025066751066112
Offset: 0

Views

Author

Benoit Cloitre, Oct 10 2006

Keywords

Comments

Next term is too large to include.

Crossrefs

Cf. A007701.

Programs

  • Mathematica
    a[n_] := 2^(4^n + (n+1) * 2^n - 3 * 2^n+1); Array[a, 5, 0] (* Amiram Eldar, May 08 2025 *)
  • PARI
    a(n)=2^(4^n+(n+1)*2^n-3*2^n+1);
    
  • PARI
    a(n) = poldisc(polchebyshev(2^n, 1)); \\ Michel Marcus, Mar 02 2023

Formula

a(n) = 2^(4^n+(n+1)*2^n-3*2^n+1).