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!)
A085459 Numbers k such that k-th cyclotomic polynomial has exactly 3 positive coefficients. 1
3, 9, 10, 20, 27, 40, 50, 80, 81, 100, 160, 200, 243, 250, 320, 400, 500, 640, 729, 800, 1000, 1250, 1280, 1600, 2000, 2187, 2500, 2560, 3200, 4000, 5000, 5120, 6250, 6400, 6561, 8000, 10000, 10240, 12500, 12800, 16000, 19683, 20000, 20480, 25000, 25600 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Sequence appears to consist of 3^i, i > 0; and 2^i*5^j, i, j > 0. Are there any other terms? - David Wasserman, Feb 01 2005
LINKS
EXAMPLE
9 is a member because the 9th cyclotomic polynomial is P(x) = x^6+x^3+1.
MATHEMATICA
Select[Range@ 5000, Count[CoefficientList[Cyclotomic[#, x], x], _?(# > 0 &)] == 3 &] (* Michael De Vlieger, Oct 26 2017 *)
PROG
(PARI) n = 0; while (1, n++; p = polcyclo(n, x); d = poldegree(p); c = 0; i = 0; while (c < 4 && i <= d, if (polcoeff(p, i) > 0, c++); i++); if (c == 3, print(n))); \\ David Wasserman, Feb 01 2005
CROSSREFS
Sequence in context: A088005 A340459 A125237 * A092169 A093108 A247519
KEYWORD
nonn,easy
AUTHOR
Yuval Dekel (dekelyuval(AT)hotmail.com), Aug 14 2003
EXTENSIONS
More terms from David Wasserman, Feb 01 2005
STATUS
approved

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 April 24 08:28 EDT 2024. Contains 371927 sequences. (Running on oeis4.)