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-3 of 3 results.

A025612 Numbers of form 2^i*10^j, with i, j >= 0.

Original entry on oeis.org

1, 2, 4, 8, 10, 16, 20, 32, 40, 64, 80, 100, 128, 160, 200, 256, 320, 400, 512, 640, 800, 1000, 1024, 1280, 1600, 2000, 2048, 2560, 3200, 4000, 4096, 5120, 6400, 8000, 8192, 10000, 10240, 12800, 16000, 16384, 20000, 20480, 25600, 32000, 32768, 40000, 40960
Offset: 1

Views

Author

Keywords

Crossrefs

Subsequence of A000079 and A011557.
Subsequences: A025621 and A025634.

Programs

  • Mathematica
    n = 10^5; Flatten[Table[2^i*10^j, {i, 0, Log2[n]}, {j, 0, Log10[n/2^i]}]] // Sort (* Amiram Eldar, Sep 25 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<<=1)); Set(v) \\ Charles R Greathouse IV, Jan 10 2018

Formula

Sum_{n>=1} 1/a(n) = (2*10)/((2-1)*(10-1)) = 20/9. - Amiram Eldar, Sep 25 2020
a(n) ~ exp(sqrt(2*log(2)*log(10)*n)) / sqrt(20). - Vaclav Kotesovec, Sep 25 2020
a(n) = 2^A025639(n) * 10^A025684(n). - R. J. Mathar, Jul 06 2025

A215592 Value of y in the n-th number of the form x+y*(3+sqrt(13))/2.

Original entry on oeis.org

0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 4, 1, 2, 3, 0, 4, 1, 2, 3, 0, 4, 1, 2, 3, 0, 4, 1, 5, 2, 3, 0, 4, 1, 5, 2, 3, 0, 4, 1, 5, 2, 3, 0, 4, 1, 5, 2, 6, 3, 0, 4, 1, 5, 2, 6, 3
Offset: 1

Views

Author

Peter G. Anderson, Aug 16 2012

Keywords

Comments

Differs from A025684 first at the index 308. (The 0 and 13 at indices 308 and 309 are swapped). - R. J. Mathar, Mar 10 2013

Crossrefs

A215591 is the value of x.

A025695 Index of 2^n within sequence of numbers of form 2^i*10^j.

Original entry on oeis.org

1, 2, 3, 4, 6, 8, 10, 13, 16, 19, 23, 27, 31, 35, 40, 45, 50, 56, 62, 68, 75, 82, 89, 96, 104, 112, 120, 129, 138, 147, 157, 167, 177, 187, 198, 209, 220, 232, 244, 256, 269, 282, 295, 308, 322, 336, 350, 365, 380, 395, 411, 427, 443, 459, 476, 493, 510, 528, 546, 564, 583
Offset: 1

Views

Author

Keywords

Comments

Positions of zeros in A025684. - R. J. Mathar, Jul 06 2025
Showing 1-3 of 3 results.