cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A025626 Numbers of form 6^i*7^j, with i, j >= 0.

Original entry on oeis.org

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

Views

Author

Keywords

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
a(n) = 6^A025660(n) * 7^A025668(n). - R. J. Mathar, Jul 06 2025