OFFSET
1,2
COMMENTS
From Amiram Eldar, Jan 16 2022: (Start)
Numbers whose 3-adic valuation is not smaller than their 2-adic valuation.
The asymptotic density of this sequence is 3/5. (End)
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..10000
MATHEMATICA
z = 260; a[b_] := Table[Mod[n/b^IntegerExponent[n, b], b], {n, 1, z}]
p[b_, d_] := Flatten[Position[a[b], d]]
p[6, 3]/3
(* second program *)
Select[Range[200], IntegerExponent[#, 3] >= IntegerExponent[#, 2] &] (* Amiram Eldar, Jan 16 2022 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Nov 01 2016
STATUS
approved