login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A076468 Perfect powers m^k where k >= 4. 4
1, 16, 32, 64, 81, 128, 243, 256, 512, 625, 729, 1024, 1296, 2048, 2187, 2401, 3125, 4096, 6561, 7776, 8192, 10000, 14641, 15625, 16384, 16807, 19683, 20736, 28561, 32768, 38416, 46656, 50625, 59049, 65536, 78125, 83521, 100000, 104976, 117649 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If p|n then at least p^4|n.
Subsequence of A036967. - R. J. Mathar, May 27 2011
LINKS
FORMULA
Sum_{n>=1} 1/a(n) = 3 - zeta(2) - zeta(3) + Sum_{k>=2} mu(k)*(3 - zeta(k) - zeta(2*k) - zeta(3*k)) = 1.1473274274... . - Amiram Eldar, Dec 03 2022
MATHEMATICA
a = {1}; Do[ If[ Apply[ GCD, Last[ Transpose[ FactorInteger[n]]]] > 3, a = Append[a, n]; Print[n]], {n, 2, 131071}]; a
PROG
(Haskell)
import qualified Data.Set as Set (null)
import Data.Set (empty, insert, deleteFindMin)
a076468 n = a076468_list !! (n-1)
a076468_list = 1 : f [2..] empty where
f xs'@(x:xs) s | Set.null s || m > x ^ 4 = f xs $ insert (x ^ 4, x) s
| m == x ^ 4 = f xs s
| otherwise = m : f xs' (insert (m * b, b) s')
where ((m, b), s') = deleteFindMin s
-- Reinhard Zumkeller, Jun 19 2013
CROSSREFS
Sequence in context: A172418 A369170 A036967 * A246550 A197917 A317475
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Oct 14 2002
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 7 01:48 EDT 2024. Contains 372298 sequences. (Running on oeis4.)