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!)
A304687 Start with the multiset of prime multiplicities of n. Given a multiset, take the multiset of its multiplicities. Repeat until a constant multiset {k,k,...,k} is reached, and set a(n) to the sum of this multiset (k times the length). 8
0, 1, 1, 2, 1, 2, 1, 3, 2, 2, 1, 2, 1, 2, 2, 4, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 3, 2, 1, 3, 1, 5, 2, 2, 2, 4, 1, 2, 2, 2, 1, 3, 1, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 1, 2, 2, 6, 2, 3, 1, 2, 2, 3, 1, 2, 1, 2, 2, 2, 2, 3, 1, 2, 4, 2, 1, 2, 2, 2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
EXAMPLE
The following are examples showing the reduction of a multiset starting with the multiset of prime multiplicities of n.
a(60) = 2: {1,1,2} -> {1,2} -> {1,1}.
a(360) = 3: {1,2,3} -> {1,1,1}.
a(1260) = 4: {1,1,2,2} -> {2,2}.
a(21492921450) = 6: {1,1,2,2,3,3} -> {2,2,2}.
MAPLE
a:= proc(n) map(i-> i[2], ifactors(n)[2]);
while nops({%[]})>1 do [coeffs(add(x^i, i=%))] od;
add(i, i=%)
end:
seq(a(n), n=1..100); # Alois P. Heinz, May 17 2018
MATHEMATICA
Table[If[n==1, 0, NestWhile[Sort[Length/@Split[#]]&, Sort[Last/@FactorInteger[n]], !SameQ@@#&]//Total], {n, 360}]
CROSSREFS
Sequence in context: A059829 A363369 A304465 * A076558 A328195 A235875
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 16 2018
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.)