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

A126881
a(1)=1, a(2)=2. a(n) is the a(n-1)th integer from among those positive integers coprime to a(n-2).
1
1, 2, 2, 3, 5, 7, 8, 9, 17, 25, 26, 32, 69, 137, 214, 215, 433, 553, 554, 654, 1311, 3967, 6565, 6566, 8979, 21267, 33151, 53216, 53217, 106497, 161963, 242965, 244832, 306046, 714759, 1579093, 2396450, 2420102, 7278679, 14557369, 14778071
OFFSET
1,2
EXAMPLE
a(4)=3, a(5)=5. So a(6) is the 5th positive integer which is coprime to 3. 3 is coprime to 1,2,4,5,7,8,10,11,... So a(6) is the 5th of these, which is 7.
MATHEMATICA
f[m_, n_] := Block[{k = 0, c = n}, While[c > 0, k++; While[GCD[k, m] > 1, k++ ]; c--; ]; k]; g[l_] := Append[l, f[l[[ -2]], l[[ -1]]]]; Nest[g, {1, 2}, 40] (* Ray Chandler, Dec 31 2006 *)
CROSSREFS
Cf. A126882.
Sequence in context: A178880 A079953 A133393 * A290273 A125505 A357381
KEYWORD
nonn
AUTHOR
Leroy Quet, Dec 29 2006
EXTENSIONS
Extended by Ray Chandler, Dec 31 2006
STATUS
approved