A100778 Integer powers of primorial numbers.
1, 2, 4, 6, 8, 16, 30, 32, 36, 64, 128, 210, 216, 256, 512, 900, 1024, 1296, 2048, 2310, 4096, 7776, 8192, 16384, 27000, 30030, 32768, 44100, 46656, 65536, 131072, 262144, 279936, 510510, 524288, 810000, 1048576, 1679616, 2097152, 4194304, 5336100
Offset: 1
Examples
10 is not a term as 6 is a member with the same prime signature 10 > 6. 216 is a term as 216 = (2*3)^3. 243 is not a term as 32 represents that prime signature.
Links
- David A. Corneth, Table of n, a(n) for n = 1..8606 (terms <= 10^1000)
Crossrefs
Programs
-
Mathematica
unintQ[n_]:=And[SameQ@@Last/@FactorInteger[n],Length[FactorInteger[n]]==PrimePi[FactorInteger[n][[-1,1]]]]; Select[Range[1000],unintQ] (* Gus Wiseman, Dec 26 2018 *)
Formula
Sum_{n>=1} 1/a(n) = 1 + Sum_{n>=1} 1/A057588(n) = 2.2397359032... - Amiram Eldar, Oct 20 2020; corrected by Hal M. Switkay and Amiram Eldar, Apr 12 2021
Extensions
More terms and simpler definition from Ray Chandler, Nov 29 2004
Comments