I am trying to take the number 1663126215 and I want to subtract "8400" from this number 1000 times and keep all the results. I thought that maybe I can write a loop for this:
the_list = list()
for (i in 1:1000)
{
new_i = 1663126215 - 8400*i
the_list[[i]] <- new_i
}
I am not sure I have this done correctly - can someone please confirm? Are there other ways I could have done this?
Thank you!