The number should be of the form (2^a)(3^b)(5^c). The conditions require
a-1, b, c all be multiples of 2.
a, b-1, c all be multiples of 3.
a, b, c-1 all be multiples of 5.
From which a=15, b=10, c=6 are the smallest positive a,b,c.
Ordinarily we'd want each of 16 possible a, 11 possible b, 7 possible c. But since multiples of 10 are not allowed, we need a=0 if c>0 and c=0 if a>0. There 16+7-1=22 ways of doing this.