login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A025615
Numbers of form 3^i*8^j, with i, j >= 0.
6
1, 3, 8, 9, 24, 27, 64, 72, 81, 192, 216, 243, 512, 576, 648, 729, 1536, 1728, 1944, 2187, 4096, 4608, 5184, 5832, 6561, 12288, 13824, 15552, 17496, 19683, 32768, 36864, 41472, 46656, 52488, 59049, 98304, 110592, 124416, 139968, 157464, 177147, 262144
OFFSET
1,2
COMMENTS
Subset of A003586 3-smooth numbers: numbers of the form 2^i*3^j with i, j >= 0. - Daniel Forgues, Feb 24 2011
Indices for which a term is a power of 3 are in A025699 and a power of 8 are in A025728- Bernard Schott, Dec 27 2021
LINKS
FORMULA
Sum_{n>=1} 1/a(n) = 12/7. - Amiram Eldar, Feb 18 2021
From Bernard Schott, Dec 27 2021: (Start)
a(A025699(n)) = 3^(n-1).
a(A025728(n)) = 8^(n-1). (End)
MATHEMATICA
lim = 262144; Select[Sort[Flatten[Table[3^i 8^j, {i, 0, Log[3, lim]}, {j, 0, Log[8, lim]}]]], # <=lim &] (* T. D. Noe, Mar 01 2012 *)
PROG
(PARI) list(lim)=my(v=List(), N); for(n=0, logint(lim\=1, 3), N=3^n; while(N<=lim, listput(v, N); N<<=3)); Set(v) \\ Charles R Greathouse IV, Jan 10 2018
CROSSREFS
KEYWORD
easy,nonn
STATUS
approved