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!)
A188385 Highest exponent in the prime factorization of n^n. 2
0, 2, 3, 8, 5, 6, 7, 24, 18, 10, 11, 24, 13, 14, 15, 64, 17, 36, 19, 40, 21, 22, 23, 72, 50, 26, 81, 56, 29, 30, 31, 160, 33, 34, 35, 72, 37, 38, 39, 120, 41, 42, 43, 88, 90, 46, 47, 192, 98, 100, 51, 104, 53, 162, 55, 168, 57, 58, 59, 120, 61, 62, 126, 384 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = n * A051903(n). - Franklin T. Adams-Watters, Mar 29 2011
Sum_{k=1..n} a(k) ~ c * n^2 / 2, where c = A033150 = 1.705211... . - Amiram Eldar, Jan 05 2024
EXAMPLE
For n = 1, 1^1 = 1, giving a(1) = 0.
For n = 12, 12^12 = 8916100448256 = (2^24)(3^12), giving a(12) = 24.
MATHEMATICA
Join[{0}, Table[n*Max[Last /@ FactorInteger[n]], {n, 2, 100}]] (* T. D. Noe, Mar 30 2011 *)
PROG
(PARI) a(n) = if (n==1, 0, n*vecmax(factor(n)[, 2])); \\ Michel Marcus, Dec 08 2020
CROSSREFS
Sequence in context: A175068 A355264 A157488 * A332793 A102631 A100782
KEYWORD
nonn,easy
AUTHOR
A. Timothy Royappa, Mar 29 2011
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 April 24 19:06 EDT 2024. Contains 371962 sequences. (Running on oeis4.)