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.

A219278 Numbers n such that ChebyshevT[16,n] is prime.

Original entry on oeis.org

2, 13, 20, 21, 33, 74, 87, 88, 94, 104, 105, 127, 172, 182, 185, 188, 215, 224, 233, 240, 249, 258, 278, 281, 292, 293, 304, 329, 337, 365, 399, 416, 433, 440, 468, 471, 489, 502, 509, 529, 540, 573, 576, 583, 608, 612, 615, 622, 630, 631, 639, 685, 689, 707
Offset: 1

Views

Author

Michel Lagneau, Nov 17 2012

Keywords

Comments

ChebyshevT[16,x] is the 16th Chebyshev polynomial of the first kind evaluated at x.

Crossrefs

Programs

  • Maple
    P:= unapply(orthopoly[T](16,x),x):
    select(isprime @ P, [$1..1000]); # Robert Israel, Aug 13 2018
  • Mathematica
    lst={}; Do[If[PrimeQ[ChebyshevT [16, n]], AppendTo[lst, n]], {n, 10^3}]; lst
    Select[Range[800],PrimeQ[ChebyshevT[16,#]]&] (* Harvey P. Dale, Jan 23 2016 *)
  • PARI
    is(n)=ispseudoprime(polchebyshev(16,1,n)) \\ Charles R Greathouse IV, May 22 2017