OFFSET
0,1
COMMENTS
a(0) could also be 1. - T. D. Noe, Oct 29 2007
LINKS
FORMULA
EXAMPLE
Phi_15(x) = x^8 - x^7 + x^5 - x^4 + x^3 - x + 1, thus the 1-bits of a(15) are at positions 0,1,3,4,5,7 and 8, thus we get a(15) = 110111011.
MAPLE
map(convert, A063670, binary);
MATHEMATICA
a[n_] := FromDigits[Abs[CoefficientList[Cyclotomic[n, x], x]]]; a[0]=10; Table[a[n], {n, 0, 22}] (* Jean-François Alcover, Nov 02 2016 *)
CROSSREFS
KEYWORD
nonn,base,nice
AUTHOR
Antti Karttunen, Aug 03 2001
STATUS
approved