Use the map, foldl, or for-each functions if you have a known list of (possibly non-contiguous) integers. Or, you may be interested in SRFI 42 (Eager List Comprehensions). Otherwise, try a do loop.
For example, to double all entries in a list:
> (definea (list1257910108))
> (map (lambda (x) (*2x)) a)
(2410141820216)
> (for-each (lambda (x) (printf"~a " (*2x))) a)
2410141820216