OFFSET
0,3
EXAMPLE
a(7)*a(6) = 6. So a(8) is the number of positive integers which are <= 8 and are coprime to 6. There are 3 such integers (1,5,7), so a(8) = 3.
MAPLE
a[0]:=1: a[1]:=1: for n from 2 to 100 do ct:=0: for i from 1 to n do if igcd(i, a[n-1]*a[n-2])=1 then ct:=ct+1 else fi: od: a[n]:=ct: od: seq(a[n], n=0..100); # Emeric Deutsch, May 06 2007
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, May 05 2007
EXTENSIONS
More terms from Emeric Deutsch, May 06 2007
STATUS
approved