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”).

A256144
Primitive prime factors of the cyclotomic polynomial sequence Phi(9,k) in the order in which they occur.
5
3, 73, 757, 19, 829, 2467, 37, 1063, 262657, 333667, 1772893, 80749, 1609669, 397, 18973, 541, 21061, 109, 1270657, 991, 34327, 523, 29989, 64008001, 85775383, 127, 297613, 7792003, 2017, 4987, 5167, 308933353, 433, 8209, 444979, 14437, 41203, 729027001
OFFSET
1,1
COMMENTS
Phi(9,k) = k^6 + k^3 + 1.
LINKS
MATHEMATICA
prim = {}; Do[prim = Join[prim, Complement[First /@ FactorInteger[Cyclotomic[9, k]], prim]], {k, 1000}]; prim
PROG
(PARI) lista(nn) = {vs = []; for (n=1, nn, vp = factor(polcyclo(9, n))[, 1]; for (i=1, #vp, if (!vecsearch(vs, vp[i]), print1(vp[i], ", "); vs = vecsort(concat(vs, vp[i]), , 8); ); ); ); } \\ Michel Marcus, Mar 20 2015
CROSSREFS
Sequence in context: A142078 A054689 A371511 * A060883 A162601 A173807
KEYWORD
nonn
AUTHOR
Robert Price, Mar 16 2015
STATUS
approved