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!)
A324210 Squarefree numbers k such that the sum of the distinct prime factors of k is twice the difference between the largest and the smallest prime factors of k. 1

%I #23 May 28 2019 19:36:43

%S 110,182,374,494,782,1334,2294,3182,3854,4982,6254,7905,7917,8174,

%T 9782,11534,12765,14774,15810,15834,18705,19982,20757,21614,22330,

%U 22454,24182,25530,27265,28210,30381,30597,32637,35894,37410,40205,41181,41514,43005,47414,49210

%N Squarefree numbers k such that the sum of the distinct prime factors of k is twice the difference between the largest and the smallest prime factors of k.

%C This sequence is a primitive subsequence of A200070. If p|a(n) for some prime p then p*a(n) is in A200070.

%C From _Robert Israel_, Apr 09 2019: (Start)

%C All terms have at least three prime factors.

%C The number of prime factors is odd if and only if the term is even.

%C The terms with three prime factors are 2*A111192. (End)

%H Robert Israel, <a href="/A324210/b324210.txt">Table of n, a(n) for n = 1..10000</a>

%e 110 = 2 * 5 * 11 is squarefree. The minimal and maximal prime divisors of 110 are 2 and 11 respectively. Twice their difference is 2 * (11-2) = 18 which is also the sum of the distinct prime divisors of 110; 2 + 5 + 11 = 18.

%p filter:= proc(n) local P;

%p if not numtheory:-issqrfree(n) then return false fi;

%p P:= numtheory:-factorset(n);

%p convert(P, `+`) = 2*(max(P)-min(P))

%p end proc:

%p select(filter, [$1..50000]);# _Robert Israel_, Apr 09 2019

%t Select[Select[Range[2, 5*10^4], SquareFreeQ], Total@ # == 2 (Last@ # - First@ #) &@ FactorInteger[#][[All, 1]] &] (* _Michael De Vlieger_, Apr 11 2019 *)

%o (PARI) is(n) = if(!issquarefree(n), return(0)); my(f=factor(n)[, 1]~); sum(i=1, #f, f[i])==2*(f[#f]-f[1])

%o forcomposite(c=1, 50000, if(is(c), print1(c, ", "))) \\ _Felix Fröhlich_, Apr 11 2019

%Y Cf. A200070, A111192.

%K nonn

%O 1,1

%A _David A. Corneth_, Apr 09 2019

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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)