OFFSET
1,2
COMMENTS
All numbers of the form p^(2^k) are members.
Except for the first term, same as A050376. - David Wasserman, Dec 22 2004
Also, the lexicographically earliest sequence of distinct positive integers such that the number of divisors of the product of n initial terms (for any n) is a power of 2. - Ivan Neretin, Aug 12 2015
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..10000
PROG
(PARI) find(pv)=k = 1; while (! (pv % k), k++); return (k);
lista(nn) = print1(pv=1, ", "); for (i=1, nn, nv = find(pv); pv *= nv; print1(nv, ", ")) \\ Michel Marcus, Aug 12 2015
(PARI) A209229(n)=if(n%2, n==1, isprimepower(n))
is(n)=A209229(isprimepower(n)) || n==1 \\ Charles R Greathouse IV, Oct 19 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, May 31 2003
EXTENSIONS
More terms from Patrick De Geest, Jun 05 2003
STATUS
approved