The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A025610 Numbers of form 2^i*6^j, with i, j >= 0; equivalently, numbers of the form 2^i*3^j with 0 <= j <= i. 12
1, 2, 4, 6, 8, 12, 16, 24, 32, 36, 48, 64, 72, 96, 128, 144, 192, 216, 256, 288, 384, 432, 512, 576, 768, 864, 1024, 1152, 1296, 1536, 1728, 2048, 2304, 2592, 3072, 3456, 4096, 4608, 5184, 6144, 6912, 7776, 8192, 9216, 10368, 12288, 13824, 15552, 16384, 18432 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
From Vaclav Kotesovec, Sep 25 2020: (Start)
a(n) ~ exp(sqrt(2*log(2)*log(6)*n)) / sqrt(12).
Sum_{k>=1} 1/a(k) = 12/5. (End)
MATHEMATICA
n = 10^6; Flatten[Table[2^i*6^j, {i, 0, Log2[n]}, {j, 0, Log[6, n/2^i]}]] // Sort (* Amiram Eldar, Sep 26 2020 *)
PROG
(PARI) list(lim)=my(v=List(), t); for(j=0, logint(lim\=1, 6), t=6^j; while(t<=lim, listput(v, t); t<<=1)); Set(v) \\ Charles R Greathouse IV, Dec 14 2016
CROSSREFS
Intersection of A025487 and A003586.
Sequence in context: A062847 A001013 A115746 * A344181 A242101 A131117
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 May 13 21:51 EDT 2024. Contains 372523 sequences. (Running on oeis4.)