Define the number sequence {5n}


n1 = {3,6,9,12,15, … ) recursively�

1 answer

Looks like we are adding 3 to the previous term

n1 = 3
nn+1 = nn + 3

Don't know where the {5n} comes in, are you interested in only the
nn , where n consists of multiples of 5?
Do you want the nn values multiplied by 5?

You decide.