cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A342956 a(n) = A001222(A001414(n)).

Original entry on oeis.org

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
Offset: 1

Views

Author

J. M. Bergot and Robert Israel, Mar 30 2021

Keywords

Comments

a(n) is the number of prime divisors of the sum of prime divisors of n, counting multiplicity in both cases.

Examples

			a(16) = 3 because A001414(16) = 2+2+2+2 = 8 and A001222(8) = A001222(2^3) = 3.
		

Crossrefs

Programs

  • 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 *)
  • 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