A025626 Numbers of form 6^i*7^j, with i, j >= 0.
1, 6, 7, 36, 42, 49, 216, 252, 294, 343, 1296, 1512, 1764, 2058, 2401, 7776, 9072, 10584, 12348, 14406, 16807, 46656, 54432, 63504, 74088, 86436, 100842, 117649, 279936, 326592, 381024, 444528, 518616, 605052, 705894, 823543, 1679616, 1959552
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
n = 10^6; Flatten[Table[6^i*7^j, {i, 0, Log[6, n]}, {j, 0, Log[7, n/6^i]}]] // Sort (* Amiram Eldar, Sep 25 2020 *)
Formula
Sum_{n>=1} 1/a(n) = (6*7)/((6-1)*(7-1)) = 7/5. - Amiram Eldar, Sep 25 2020
a(n) ~ exp(sqrt(2*log(6)*log(7)*n)) / sqrt(42). - Vaclav Kotesovec, Sep 25 2020