OFFSET
0,2
COMMENTS
Also, a(n) is the least number k such that A382291(k) = 2^n.
Cumulative products of the sorted sequence that contains 1 and prime powers of the form p^3 and p^(2^k) with k >= 2.
LINKS
Amiram Eldar, Table of n, a(n) for n = 0..150
MATHEMATICA
PROG
(PARI) list(mx) = {my(t = [1], k =3, lim); while(lim = mx^(1/k); lim > 2, t = concat(t, apply(x -> x^k, primes(primepi(lim)))); if(k == 3, k = 4, k *= 2)); t = vecsort(t); vector(#t, n, prod(i = 1, n, t[i])); }
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Mar 21 2025
STATUS
approved
