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.

A337801 Numbers of the form (2^i)*(5^j) or (3^i)*(5^j).

Original entry on oeis.org

1, 2, 3, 4, 5, 8, 9, 10, 15, 16, 20, 25, 27, 32, 40, 45, 50, 64, 75, 80, 81, 100, 125, 128, 135, 160, 200, 225, 243, 250, 256, 320, 375, 400, 405, 500, 512, 625, 640, 675, 729, 800, 1000, 1024, 1125, 1215, 1250, 1280, 1600, 1875, 2000, 2025, 2048, 2187, 2500
Offset: 1

Views

Author

Vaclav Kotesovec, Sep 22 2020

Keywords

Comments

Union of A003592 and A003593.

Crossrefs

Programs

  • Mathematica
    n = 10^4; Join[Table[2^i*5^j, {i, 0, Log[2, n]}, {j, 0, Log[5, n/2^i]}], Table[3^i*5^j, {i, 0, Log[3, n]}, {j, 0, Log[5, n/3^i]}]] // Flatten // Union (* Amiram Eldar, Sep 23 2020 *)

Formula

a(n) ~ exp(sqrt(2*log(2)*log(3)*log(5)*n / log(6))) / sqrt(5).
Sum_{n>=1} 1/a(n) = 25/8. - Amiram Eldar, Sep 23 2020