login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A025612 Numbers of form 2^i*10^j, with i, j >= 0. 15
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
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
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 *)
PROG
(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
CROSSREFS
Subsequence of A000079 and A011557.
Subsequences: A025621 and A025634.
Sequence in context: A093547 A068382 A356232 * A335239 A102248 A161374
KEYWORD
easy,nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 30 07:58 EDT 2024. Contains 373861 sequences. (Running on oeis4.)