OFFSET
1,2
COMMENTS
These are the fixed points of A064614, a permutation of natural numbers: A064614(a(n)) = a(n), for all n.
Numbers n such that exponent of highest power of 2 dividing n is equal to exponent of highest power of 3 dividing n. - Juri-Stepan Gerasimov, Sep 01 2016
All primes >3 are terms. - Zak Seidov, Sep 02 2016
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = 5n/2 + O(log n). - Charles R Greathouse IV, Sep 02 2016
MAPLE
q:= n-> is(padic[ordp](n, 2)=padic[ordp](n, 3)):
select(q, [$1..200])[]; # Alois P. Heinz, Oct 28 2021
MATHEMATICA
okQ[n_] := IntegerExponent[n, 2] == IntegerExponent[n, 3];
Select[Range[200], okQ] (* Jean-François Alcover, Oct 28 2021 *)
PROG
(PARI) is(n)=valuation(n, 2)==valuation(n, 3) \\ Charles R Greathouse IV, Sep 02 2016
(Magma) [n: n in [1..200] |Valuation(n, 2) eq Valuation(n, 3)]; // Vincenzo Librandi, Sep 02 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Sep 25 2001
STATUS
approved