login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A153159
a(n) = A007916(n)^5.
5
32, 243, 3125, 7776, 16807, 100000, 161051, 248832, 371293, 537824, 759375, 1419857, 1889568, 2476099, 3200000, 4084101, 5153632, 6436343, 7962624, 11881376, 17210368, 20511149, 24300000, 28629151, 39135393, 45435424
OFFSET
1,1
MATHEMATICA
Select[Range[2, 100], GCD@@Last/@FactorInteger@#==1&]^5
PROG
(Python)
from sympy import mobius, integer_nthroot
def A153159(n):
def f(x): return int(n+1-sum(mobius(k)*(integer_nthroot(x, k)[0]-1) for k in range(2, x.bit_length())))
m, k = n, f(n)
while m != k: m, k = k, f(k)
return m**5 # Chai Wah Wu, Nov 21 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Edited and extended by Ray Chandler, Dec 22 2008
STATUS
approved