login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A250189
Numbers n such that Phi(40,n) is prime, where Phi is the cyclotomic polynomial.
2
2, 3, 4, 31, 37, 39, 46, 77, 98, 119, 124, 143, 144, 154, 169, 197, 205, 232, 245, 266, 291, 295, 297, 305, 308, 319, 332, 333, 413, 426, 431, 437, 454, 459, 472, 483, 513, 528, 531, 542, 579, 617, 619, 635, 647, 677, 724, 737, 748, 780, 806, 815, 819, 820, 840, 851, 858, 870, 875, 907, 920, 927, 940, 983, 1002, 1028
OFFSET
1,1
LINKS
MATHEMATICA
Select[Range[1200], PrimeQ[Cyclotomic[40, #]] &] (* Vincenzo Librandi, Jan 16 2015 *)
PROG
(PARI) {is(n)=isprime(polcyclo(40, n))};
for(n=1, 1000, if(is(n), print1(n, ", "))) \\ G. C. Greubel, May 20 2018
CROSSREFS
Cf. A246392.
Sequence in context: A351999 A356885 A057917 * A255253 A076592 A004844
KEYWORD
nonn
AUTHOR
R. J. Mathar, Jan 12 2015
STATUS
approved