A070776 Numbers k such that number of terms in the k-th cyclotomic polynomial is equal to the largest prime factor of k.
2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 34, 36, 37, 38, 40, 41, 43, 44, 46, 47, 48, 49, 50, 52, 53, 54, 56, 58, 59, 61, 62, 64, 67, 68, 71, 72, 73, 74, 76, 79, 80, 81, 82, 83, 86, 88, 89, 92, 94, 96, 97, 98, 100
Offset: 1
Examples
n=10: Cyclotomic[10,x]=1-x+x^2-x^3+x^4 with 5 terms [including 1] which equals largest prime factor (5) of 10=n.
Links
- Antti Karttunen, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
Select[Range[1000],(a=FactorInteger[#];b=Length[a];(b==1)||((b==2)&&(a[[1]][[1]]==2)))&] (* Lei Zhou, Feb 18 2012 *)
-
PARI
A006530(n) = if(n>1, vecmax(factor(n)[, 1]), 1); \\ From A006530. A051664(n) = length(select(x->x!=0, Vec(polcyclo(n)))); \\ After program in A051664 A070536(n) = (A051664(n) - A006530(n)); isA070776(n) = (!A070536(n)); \\ Antti Karttunen, Feb 15 2019 k=0; n=0; while(k<10000, n++; if(isA070776(n), k++; write("b070776.txt", k, " ", n)));
Comments