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!)
A087179 a(n) = ((...(x1^x2)^x3)^x4)^...) where x1,x2,... are the exponents in the prime factorization of n, a(1) = 0. 2
0, 1, 1, 2, 1, 1, 1, 3, 2, 1, 1, 2, 1, 1, 1, 4, 1, 1, 1, 2, 1, 1, 1, 3, 2, 1, 3, 2, 1, 1, 1, 5, 1, 1, 1, 4, 1, 1, 1, 3, 1, 1, 1, 2, 2, 1, 1, 4, 2, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 2, 1, 1, 2, 6, 1, 1, 1, 2, 1, 1, 1, 9, 1, 1, 1, 2, 1, 1, 1, 4, 4, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 2, 1, 1, 1, 5, 1, 1, 2, 4, 1, 1, 1, 3, 1, 1, 1, 8, 1, 1, 1, 4, 1, 1, 1, 2, 2, 1, 1, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
If A001221(n) <= 1, a(n) = A067029(n) [i.e., when n is a prime power, p^k, a(n) = k], otherwise a(n) = a(A051119(n)) ^ A071178(n). - Antti Karttunen, Aug 27 2017
EXAMPLE
a(108)= a((2^2)*(3^3)) = 2^3 = 8.
a(75) = a((3^1)*(5^2)) = 1^2 = 1.
For n = 300 = 2^2 * 3^1 * 5^2 we have a(300) = (2^1)^2 = 4. - Antti Karttunen, Aug 27 2017
PROG
(Scheme) (define (A087179 n) (if (<= (A001221 n) 1) (A067029 n) (expt (A087179 (A051119 n)) (A071178 n)))) ;; Antti Karttunen, Aug 27 2017
CROSSREFS
After a(1) = 0 differs from A290109 for the next time at n=300.
Sequence in context: A182426 A371733 A067029 * A290109 A302045 A302035
KEYWORD
nonn
AUTHOR
Sam Alexander, Oct 19 2003
EXTENSIONS
Term a(1) = 0 prepended by Antti Karttunen, Aug 27 2017
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 August 16 08:47 EDT 2024. Contains 375173 sequences. (Running on oeis4.)