OFFSET
1,2
COMMENTS
FORMULA
a(n) = 9n/4 + O(log n). - Charles R Greathouse IV, May 14 2014
EXAMPLE
19/10 is already fully reduced, and has a power of 10 in its denominator, so 19 is in the sequence;
30/100 reduces to 3/10, which has a power of 10 in its denominator, so 30 is in the sequence;
12/10, 15/100, and 20/100 reduce to 6/5, 3/20, and 1/5, respectively (none of which has a power of 10 in its denominator), so 12, 15, and 20 are not in the sequence.
PROG
(PARI) for(i=1, 400, if(valuation(i, 2)==valuation(i, 5), print1(i, ", ")))
(PARI) is(n)=gcd(n/10^valuation(n, 10), 10)==1 \\ Charles R Greathouse IV, May 14 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Jeppe Stig Nielsen, Apr 26 2014
STATUS
approved