OFFSET
0,3
EXAMPLE
Floor(sqrt(11)) = 3. So a(11) is the number of terms from among a(0),a(1),...a(10) which are coprime to 3. Every term from a(0) through a(10), with the exception of a(3) and a(4), is coprime to 3; so a(11) = 9.
MAPLE
a[0]:=1: for n from 1 to 100 do ct:=0: for j from 0 to n-1 do if igcd(a[j], floor(sqrt(n)))=1 then ct:=ct+1 else fi: od: a[n]:=ct: od: seq(a[n], n=0..100); # Emeric Deutsch, Apr 16 2007
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Apr 12 2007
EXTENSIONS
More terms from Emeric Deutsch, Apr 16 2007
STATUS
approved