login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A228104
Numbers of form 2^(2i-1)*3^j, with i,j > 0.
2
6, 18, 24, 54, 72, 96, 162, 216, 288, 384, 486, 648, 864, 1152, 1458, 1536, 1944, 2592, 3456, 4374, 4608, 5832, 6144, 7776, 10368, 13122, 13824, 17496, 18432, 23328, 24576, 31104, 39366, 41472, 52488, 55296, 69984, 73728, 93312, 98304, 118098, 124416, 157464, 165888
OFFSET
1,1
COMMENTS
Subset of A033845 and A011775.
LINKS
MAPLE
N:= 10^6: # for terms <= N
sort([seq(seq(2^i * 3^j, j = 1 .. ilog[3](N/2^i)), i=1..ilog2(N/3), 2)]); # Robert Israel, Oct 14 2024
PROG
(PARI) vecsort(vector(10000, n, 2^(2*((n-1)%100)+1)*3^((n\100)+1))) /* (first 100 values) */
CROSSREFS
Sequence in context: A274536 A051395 A256266 * A028558 A337324 A140450
KEYWORD
nonn
AUTHOR
Ralf Stephan, Aug 10 2013
STATUS
approved