OFFSET
1,2
COMMENTS
Numbers k = Product_{i=1..j} p_i^e_(m*(j-i+1)) for m >= 0 and j >= 1.
This sequence contains {1}, A000079, A006939, certain k in A364710 (intersection of A126706 and A025487), and certain m in A364930 (intersection of A286708 and A025487).
The only prime in this sequence is 2.
Prime powers in this sequence are powers of 2.
Outside of {1, 2}, superprimorials are in A364710.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..5301
EXAMPLE
Powers of 2 are in the sequence since 2 = P(1).
Powers of 12 are terms, since 12 = P(1)*P(2).
Powers of 360 are terms, since 360 = P(1)*P(2)*P(3), etc.
MATHEMATICA
nn = 2^60; k = 1; P = 2; Q = 2; {1}~Join~Union@ Reap[While[j = 1; While[Q^j < nn, Sow[Q^j]; j++]; j > 1, k++; P *= Prime[k]; Q *= P] ][[-1, 1]]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Michael De Vlieger, Dec 28 2023
STATUS
approved