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

A160340
Indices of records in heights of cyclotomic polynomials (A160338).
9
1, 105, 385, 1365, 1785, 2805, 3135, 6545, 10465, 11305, 17255, 20615, 26565, 40755, 106743, 171717, 255255, 279565, 327845, 707455, 886445, 983535, 1181895, 1752465, 3949491, 8070699, 10163195, 13441645, 15069565, 30489585, 37495115, 40324935
OFFSET
1,2
COMMENTS
m is in this sequence if A160338(k) < A160338(m) for all k<m.
LINKS
John Abbott and Nico Mexis, Cyclotomic Factors and LRS-Degeneracy, arXiv:2403.08751 [math.AC], 2024. See p. 12.
Lola Thompson, Cyclotomic statistics, Univ. Utrecht (Netherlands, 2024). See pp. 6, 14.
MATHEMATICA
r = 0; Do[If[# > r, r = #; Print[n]] &@ Max@ Abs@ CoefficientList[Cyclotomic[n, x], x], {n, 10^4}] (* Michael De Vlieger, May 20 2024 *)
PROG
(PARI) print1(r=1); for(n=2, 1e4, t=vecmax(abs(Vec(polcyclo(n)))); if(t>r, r=t; print1(", "n))) \\ Charles R Greathouse IV, Jun 28 2012
CROSSREFS
Subsequence of A013594 and A046887.
Sequence in context: A190577 A102792 A013594 * A136418 A134518 A160717
KEYWORD
nonn
AUTHOR
Max Alekseyev, May 13 2009
STATUS
approved