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!)
A342956 a(n) = A001222(A001414(n)). 2
0, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 3, 3, 1, 3, 1, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 1, 2, 2, 1, 3, 2, 1, 2, 4, 1, 1, 3, 1, 2, 1, 2, 1, 1, 2, 3, 3, 1, 1, 1, 4, 1, 2, 1, 1, 3, 1, 2, 1, 3, 3, 4, 1, 2, 2, 2, 1, 3, 1, 2, 1, 1, 3, 3, 1, 1, 3, 1, 1, 2, 2, 3, 5, 1, 1, 1, 3, 3, 2, 2, 4, 1, 1, 4, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
a(n) is the number of prime divisors of the sum of prime divisors of n, counting multiplicity in both cases.
LINKS
EXAMPLE
a(16) = 3 because A001414(16) = 2+2+2+2 = 8 and A001222(8) = A001222(2^3) = 3.
MAPLE
f:= proc(n) local t; numtheory:-bigomega(add(t[1]*t[2], t=ifactors(n)[2])) end proc:
map(f, [$1..100]);
MATHEMATICA
Array[PrimeOmega[Plus@@Times@@@FactorInteger@#]&, 100] (* Giorgos Kalogeropoulos, Mar 31 2021 *)
PROG
(Python)
from sympy import factorint
def A342956(n): return sum(factorint(sum(p*e for p, e in factorint(n).items())).values()) if n > 1 else 0 # Chai Wah Wu, Mar 31 2021
CROSSREFS
Sequence in context: A316789 A319661 A320015 * A241918 A276317 A344318
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Mar 30 2021
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 13:19 EDT 2024. Contains 371953 sequences. (Running on oeis4.)