You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
176 B

#!/bin/bash
SF=$1
[ -z "$SF" ] && SF = 100
base=`expr $SF \* 2`
for x in 1 2 3 4 7 8 11 13 16 17 32 64
do
dop=`expr $base \* $x`
dop=`expr $dop + $x`
echo -n "$dop "
done