A368507 Powers of superprimorials.
1, 2, 4, 8, 12, 16, 32, 64, 128, 144, 256, 360, 512, 1024, 1728, 2048, 4096, 8192, 16384, 20736, 32768, 65536, 75600, 129600, 131072, 248832, 262144, 524288, 1048576, 2097152, 2985984, 4194304, 8388608, 16777216, 33554432, 35831808, 46656000, 67108864, 134217728
Offset: 1
Examples
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.
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..5301
Crossrefs
Programs
-
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]]
Comments