Help mathematical shell programming

Hello Guys,For my homework I must write a shell script to do this serie,

I know that I must use the "bc" for that, but for the script's itself i have no idea,(beginner)

Can you plz just help me for have some idea?
Thanks

I wrote a program baut it does not work,

#!/bin/sh
echo "Input number"
read n
counter=0
ans=1
while [ $counter -ne $n ]
do
    ans=`expr 4*(-1/(2*$counter+1))`| bc -l 
    counter=`expr counter+1`
done

echo "the sum of the series is :-$ans"

any suggestion could help me a lot

Thanks

Do not post classroom or homework problems in the main forums. Homework and coursework questions can only be posted in this forum under special homework rules.

Please review the rules, which you agreed to when you registered, if you have not already done so.

More-than-likely, posting homework in the main forums has resulting in a forum infraction. If you did not post homework, please explain the company you work for and the nature of the problem you are working on.

If you did post homework in the main forums, please review the guidelines for posting homework and repost.

Thank You.

The UNIX and Linux Forums.