OFFSET
0,3
EXAMPLE
a(13) + 14 = 30. The positive integrs which are coprime to 30 are 1, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 49, 53, 59, 61, ...; the 14th of these integers is 49, so a(14) = 49.
MAPLE
a[0]:=0: for n to 60 do CP:={}: for j while nops(CP)<=n do if gcd(n+a[n-1], j) =1 then CP:=`union`(CP, {j}) else end if end do: a[n]:=CP[n] end do: seq(a[n], n=0..60); # Emeric Deutsch, Aug 28 2007
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Aug 12 2007
EXTENSIONS
More terms from Emeric Deutsch, Aug 28 2007
STATUS
approved