A178981 2^A003418(n); for n >= 1, the least number > 1 that can be expressed simultaneously as a k-th power of some integer for all 1 <= k <= n.
2, 2, 4, 64, 4096, 1152921504606846976, 1152921504606846976
Offset: 0
Examples
a(6) = 2^A003418(6) = 2^60 = 1152921504606846976 [= (2^60)^1] = (2^30)^2 = 1073741824^2 = (2^20)^3 = 1048576^3 = (2^15)^4 = 32768^4 = (2^12)^5 = 4096^5 = (2^10)^6 = 1024^6, while no smaller integer > 1 can be expressed simultaneously as a square, cube, 4th, 5th, and 6th power of integers.
Links
Programs
-
PARI
a(n)=2^(lcm(vector(n, i, i))) \\ Jianing Song, Jul 20 2021, following a PARI program for A003418
Comments