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!)
A330873 Numbers with a record number of divisors that are perfect powers (A091050). 1
1, 4, 8, 16, 32, 64, 128, 256, 432, 576, 1152, 1296, 1728, 3456, 5184, 10368, 15552, 20736, 41472, 46656, 82944, 129600, 259200, 331776, 373248, 518400, 746496, 1036800, 1166400, 2073600, 3240000, 4665600, 6350400, 12700800, 12960000, 18662400, 25401600, 50803200 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
1 has one divisor that is a perfect power, 1. The next number with more than one perfect power divisor is 4, with 2 such divisors, 1 and 4. Therefore a(2) = 4.
MATHEMATICA
powDivNum[n_] := 1 + DivisorSum[n, 1 &, GCD @@ FactorInteger[#][[;; , 2]] > 1 &]; dm = 0; seq = {}; Do[d = powDivNum[n]; If[d > dm, dm = d; AppendTo[seq, n]], {n, 1, 10^6}]; seq
CROSSREFS
Subsequence of A025487.
Sequence in context: A085629 A349111 A307870 * A233442 A046055 A186949
KEYWORD
nonn
AUTHOR
Amiram Eldar, Apr 29 2020
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 8 09:02 EDT 2024. Contains 372332 sequences. (Running on oeis4.)