How to get this command working on Alpine Linux?

On Ubuntu I can print a list of addresses in a specific range (given a base address) like the following:

seq -s " " -f "1.1.1.%g" 1 255

How can I achieve the same task on Alpine? seq provided by BusyBox is very limited in comparison and doesn't give me a format option.


I've found a more straight forward solution using bash inside alpine:

apk add bash
echo 1.1.1.{1..255}