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!)
A187878 Numbers k such that sopfr(k + omega(k)) = sopfr(k), where sopfr(i) = A001414(i) and omega(i) = A001221(i). 2

%I #33 Mar 03 2023 11:12:29

%S 5,8,10,125,231,250,470,1846,2844,2856,3570,5126,5320,7473,8687,12555,

%T 12573,16740,16764,17877,18630,20601,21620,22011,24823,27468,28861,

%U 31941,33120,37053,42315,42588,43761,49404,58078,61072,67728,68320,75042,79947,84660,86427,92432,97723,98802,99580

%N Numbers k such that sopfr(k + omega(k)) = sopfr(k), where sopfr(i) = A001414(i) and omega(i) = A001221(i).

%H Giovanni Resta, <a href="/A187878/b187878.txt">Table of n, a(n) for n = 1..10000</a>

%H Antonio Roldán, <a href="http://hojaynumeros.blogspot.com">hojaynumeros.blogspot.com</a>.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/PrimeFactor.html">Prime Factor</a>.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/SumofPrimeFactors.html">Sum of Prime Factors</a>.

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Additive_function">Additive function</a>.

%e omega(5126)=3, (5126=2*11*233), 5126+3=5129, sopfr(5126)=2+11+233=246,

%e 5129=23*223, sopfr(5129)=2+223=246

%t omega[n_] := If[n < 2, 0, Length[FactorInteger[n]]]; sopfr[n_] := Module[{p, e}, If[n < 2, 1, {p, e} = Transpose[FactorInteger[n]]; Total[p*e]]]; Select[Range[2, 100000], sopfr[#] == sopfr[# + omega[#]] &] (* _T. D. Noe_, Mar 14 2011 *)

%o (PARI) sopfr(n)= { local(f, s=0); f=factor(n); for(i=1, matsize(f)[1], s+=f[i, 1]*f[i, 2]); return(s) }

%o { for (n=1, 10^6, if (sopfr(n)==sopfr(n+omega(n)), print1(n,", "))); }

%o /* _Antonio Roldán_, Oct 23 2012 */

%Y Cf. A001221 (omega), A001414 (sopfr: integer logarithm), A187877.

%K nonn

%O 1,1

%A _Antonio Roldán_, Mar 14 2011

%E Extended by _T. D. Noe_, Mar 14 2011

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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)