login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A317272 Numbers k such that Phi(k,x) is a cyclotomic polynomial with middle coefficient different from -1, 0, 1. 1

%I #19 Apr 17 2019 08:02:50

%S 385,770,1155,1365,1540,1925,2065,2145,2310,2415,2465,2695,2717,2730,

%T 2737,2821,2849,3003,3080,3255,3315,3465,3619,3850,4095,4130,4199,

%U 4235,4277,4290,4543,4620,4785,4830,4845,4879,4930,4991

%N Numbers k such that Phi(k,x) is a cyclotomic polynomial with middle coefficient different from -1, 0, 1.

%C n is in the sequence if and only if A204455(n) is in the sequence. - _Robert Israel_, Apr 17 2019

%H Robert Israel, <a href="/A317272/b317272.txt">Table of n, a(n) for n = 1..2000</a>

%H M. Beiter, <a href="https://www.jstor.org/stable/2310894">The midterm coefficient of the cyclotomic polynomial F_{pq}(x)</a>, Amer. Math. Monthly 71 (1964), 769-770.

%H G. Dresden, <a href="https://www.jstor.org/stable/4145075">On the Middle Coefficient of a Cyclotomic Polynomial</a>, Amer. Math. Monthly 111 (2004), 531-533.

%e 385 is the first item in the list because Phi(385,x) is the first cyclotomic polynomial with middle coefficient different from -1,0,1 (the middle term is -3x^120)

%p filter:= proc(n) local p,d;

%p p:= numtheory:-cyclotomic(n,x);

%p d:= degree(p,x);

%p abs(coeff(p, x, d/2))>1

%p end proc:

%p select(filter, [$3..5000]); # _Robert Israel_, Apr 17 2019

%t Select[Range[3, 4000],

%t Abs[Coefficient[Cyclotomic[#, x], x, EulerPhi[#]/2]] > 1 &]

%o (PARI) isok(n) = (n > 2) && (abs(polcoeff(polcyclo(n), eulerphi(n)/2)) > 1); \\ _Michel Marcus_, Aug 02 2018

%Y Cf. A013590, A023022 (phi(n)/2), A204455.

%K nonn

%O 1,1

%A _Greg Dresden_, Jul 25 2018

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 31 16:05 EDT 2024. Contains 374802 sequences. (Running on oeis4.)