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.

Showing 1-2 of 2 results.

A025622 Numbers of form 5^i*6^j, with i, j >= 0.

Original entry on oeis.org

1, 5, 6, 25, 30, 36, 125, 150, 180, 216, 625, 750, 900, 1080, 1296, 3125, 3750, 4500, 5400, 6480, 7776, 15625, 18750, 22500, 27000, 32400, 38880, 46656, 78125, 93750, 112500, 135000, 162000, 194400, 233280, 279936, 390625, 468750, 562500, 675000
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A000351 (subset), A000400 (another subset), A025651 (exponent of 5).

Programs

  • Mathematica
    n = 10^6; Flatten[Table[5^i*6^j, {i, 0, Log[5, n]}, {j, 0, Log[6, n/5^i]}]] // Sort (* Amiram Eldar, Sep 25 2020 *)

Formula

Sum_{n>=1} 1/a(n) = (5*6)/((5-1)*(6-1)) = 3/2. - Amiram Eldar, Sep 25 2020
a(n) ~ exp(sqrt(2*log(5)*log(6)*n)) / sqrt(30). - Vaclav Kotesovec, Sep 25 2020
a(n) = 5^A025651(n) *6^A025659(n). - R. J. Mathar, Jul 06 2025

A025707 Index of 5^n within sequence of numbers of form 5^i*6^j.

Original entry on oeis.org

1, 2, 4, 7, 11, 16, 22, 29, 37, 46, 55, 65, 76, 88, 101, 115, 130, 146, 163, 181, 199, 218, 238, 259, 281, 304, 328, 353, 379, 406, 433, 461, 490, 520, 551, 583, 616, 650, 685, 721, 757, 794, 832, 871, 911, 952, 994, 1037, 1081, 1126, 1171, 1217, 1264, 1312, 1361
Offset: 0

Views

Author

Keywords

Comments

Positions of zeros in A025659. - R. J. Mathar, Jul 06 2025

Programs

Extensions

Offset corrected by Charles R Greathouse IV, Jan 11 2018
Showing 1-2 of 2 results.