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.

A025629 Numbers of form 6^i*10^j with i, j >= 0.

Original entry on oeis.org

1, 6, 10, 36, 60, 100, 216, 360, 600, 1000, 1296, 2160, 3600, 6000, 7776, 10000, 12960, 21600, 36000, 46656, 60000, 77760, 100000, 129600, 216000, 279936, 360000, 466560, 600000, 777600, 1000000, 1296000, 1679616, 2160000, 2799360, 3600000, 4665600
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    n = 10^6; Flatten[Table[6^i*10^j, {i, 0, Log[6, n]}, {j, 0, Log10[n/6^i]}]] // Sort (* Amiram Eldar, Sep 26 2020 *)
  • PARI
    list(lim)=my(v=List(), N); for(n=0, logint(lim\=1, 10), N=10^n; while(N<=lim, listput(v, N); N*=6)); Set(v) \\ Charles R Greathouse IV, Jan 10 2018

Formula

Sum_{n>=1} 1/a(n) = (6*10)/((6-1)*(10-1)) = 4/3. - Amiram Eldar, Sep 26 2020
a(n) ~ exp(sqrt(2*log(6)*log(10)*n)) / sqrt(60). - Vaclav Kotesovec, Sep 26 2020
a(n) = 6^A025663(n) * 10^A025688(n). - R. J. Mathar, Jul 06 2025