#! /bin/awk -f
BEGIN {
for ( x=0.02; x<30; x+=0.05 ) {
    printf("%10.3f %10.5f\n",
        x,
        sin(x)/sqrt(x)+0.1)
  }
}