Question: how to construct theses sequences

i have this sequence :f:=n->n/n+1
       

> f1:=seq(f(n), n = 0 .. 10);
                       f1:= 0,1/2,3/4,4/5,5/6,6/7,7/8,8/9,10/11

i want to create these sequences by using f :

1) 0,2/3,4/5,6/7,8/9,...

2)2/3,9/10,16/17,..

3) 1/2^2,3^2/4^2,5^2/6^2,7^2/8^2

4)0,3/4,8/9,24/25,35/36
        can anyone help me ?              

Please Wait...