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.

A233512 The first n cyclotomic polynomials are simultaneously prime for these arguments.

This page as a plain text file.
%I A233512 #6 Jan 23 2014 12:29:20
%S A233512 3,4,6,150,1068630,6770610
%N A233512 The first n cyclotomic polynomials are simultaneously prime for these arguments.
%C A233512 The first six cyclotomic polynomials are x - 1, x + 1, x^2 + x + 1, x^2 + 1, x^4 + x^3 + x^2 + x + 1, and x^2 - x + 1.
%C A233512 By Schinzel's hypothesis H, this sequence is defined for all n.
%C A233512 a(7) > 2*10^9.
%D A233512 See A087277.
%e A233512 At x = 3, x-1 = 2, which is prime. At x = 4, x-1 = 3 and x+1 = 5, which are both prime. At x = 6, x-1 = 5, x+1 = 7, and x^2+x+1 = 43, which are all prime.
%t A233512 t = {}; n = 0; len = 0; While[len < 6, n++; found = True; i = 1; While[found && i <= len + 1, found = PrimeQ[Cyclotomic[i, n]]; i++]; If[found && i > len + 1, AppendTo[t, n]; len++]]; t
%Y A233512 Cf. A014574 (first degree solutions: average of twin primes).
%Y A233512 Cf. A087277 (similar, but with second-degree cyclotomic polynomials).
%Y A233512 Cf. A231612 (similar, but with fourth-degree cyclotomic polynomials).
%Y A233512 Cf. A231613 (similar, but with sixth-degree cyclotomic polynomials).
%Y A233512 Cf. A231614 (similar, but with eighth-degree cyclotomic polynomials).
%K A233512 nonn,hard,more
%O A233512 1,1
%A A233512 _T. D. Noe_, Dec 13 2013