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.

A144132 Primes of the form ChebyshevT[8,n].

Original entry on oeis.org

665857, 7380481, 708158977, 325142092801, 1401864610177, 2161873163521, 448940843963137, 1494471913541377, 2563669662007681, 3045085994259457, 27932995018647937, 115054894682275201, 128098973812320001
Offset: 1

Views

Author

Keywords

Programs

  • Maple
    select(isprime, [seq(128*x^8 - 256*x^6 + 160*x^4 - 32*x^2 + 1,x=1..100)]); # Robert Israel, Aug 13 2024
  • Mathematica
    lst={};Do[p=ChebyshevT[8,n];If[PrimeQ[p],AppendTo[lst,p]],{n,9^3}];lst