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

A248647
Records in A098550.
2
1, 2, 3, 4, 9, 15, 25, 35, 39, 45, 51, 85, 91, 95, 115, 119, 133, 161, 175, 329, 427, 581, 679, 973, 1043, 1141, 1267, 1337, 1673, 1897, 1981, 3443, 3493, 3563, 5753, 6941, 9229, 10417, 11561, 14963, 15037, 16181, 17369, 19657, 23089, 24277, 30043, 31207, 33253, 34793, 35849, 36949, 45071
OFFSET
1,2
COMMENTS
See the "Graph of first 300000 terms" in A098550.
LINKS
MATHEMATICA
f[lst_List] := Block[{k = 4}, While[ GCD[ lst[[-2]], k] == 1 || GCD[ lst[[-1]], k] > 1 || MemberQ[lst, k], k++]; Append[lst, k]]; records[s_List] := Block[{k = 1, lmt = 1 + Length@ s, lst = {}, mx = 0}, While[k < lmt, If[ s[[k]] > mx, mx = s[[k]]; AppendTo[lst, mx]]; k++]; lst]; s = Nest[f, {1, 2, 3}, 1000]; records[s]
CROSSREFS
Cf. A098550.
Sequence in context: A121431 A084080 A124753 * A284437 A049909 A346211
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Dec 02 2014
STATUS
approved