print the first 5 members of the array a[n+1]=3*a[n]+7 which don't contain the number 5.
a1=6.
so a[2]=3*6+7=25, but 25 has the number 5 so we go to a[3].
a[3]=25*3+7=82 <--- this is OK... and so on until we print 5 members.

these should be the printed members.
