OFFSET
1,1
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..11778 (a(n) < 10^50)
FORMULA
Numbers of the form a*b*c where a is in {3, 9}, b is a power of 2 and c is a power of 5.
EXAMPLE
12 is in the sequence since 1/12=0.08333333333...; 11 is not since 1/11=0.0909090909...; 10 is not, since despite 1/10=0.099999999..., it is also true that 1/10=0.1 exactly.
MATHEMATICA
mx = 5000; Select[ Union@ Flatten@ Table[2^t*5^f {3, 9}, {t, 0, Log[2, mx/3]}, {f, 0, Log[5, mx/(2^t*3)]}], # < mx &] (* Robert G. Wilson v, Apr 27 2017 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Henry Bottomley, Apr 12 2002
STATUS
approved