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.

Showing 1-2 of 2 results.

A138919 Indices k such that A020510(k)=Phi[k](-11) is prime, where Phi is a cyclotomic polynomial.

Original entry on oeis.org

5, 7, 18, 20, 21, 30, 34, 36, 38, 52, 54, 60, 90, 104, 117, 123, 146, 159, 179, 182, 229, 278, 388, 405, 410, 439, 552, 557, 735, 806, 807, 1220, 1272, 1568, 1688, 1696, 1710, 1814, 2136, 2262, 2288, 2862, 3679, 3814, 4058, 4304, 4480, 5070, 5136, 5154
Offset: 1

Views

Author

M. F. Hasler, Apr 04 2008

Keywords

Comments

Larger values are probable primes.

Crossrefs

Programs

  • Mathematica
    Select[Range[1000], PrimeQ[Cyclotomic[#, -11]] &]
  • PARI
    for( i=1,999, ispseudoprime( polcyclo(i,-11)) & print1(",",i)) /* use ...subst(polcyclo(i),x,-11)... in PARI < 2.4.2 */

Extensions

Edited by T. D. Noe, Oct 30 2008
a(32)-a(44) from Robert Price, Mar 16 2012
a(45)-a(50) from Robert Price, Apr 14 2012

A070530 Primes of form Cyclotomic[n,2^n].

Original entry on oeis.org

5, 73, 257, 4432676798593
Offset: 1

Views

Author

Labos Elemer, May 02 2002

Keywords

Examples

			4th term is Cyclotomic[7,128]=1+128+16384+2097152+..+4398046511104=4432676798593; the next 2 known terms have almost 200 or more than 1000 decimal digits.
		

Crossrefs

Programs

  • Mathematica
    Do[s=Cyclotomic[n, 2^n]; If[PrimeQ[s], Print[s]], {n, 1, 59}]
Showing 1-2 of 2 results.