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!)
A086770 Numbers k such that the difference between the largest and the smallest prime divisor of k equals the number of prime divisors of k (counted with multiplicity). 1

%I #23 Sep 08 2022 08:45:11

%S 1,15,20,30,35,50,112,143,168,189,252,280,315,323,378,392,420,441,525,

%T 588,630,700,735,882,899,980,1029,1050,1372,1470,1750,1763,2058,2450,

%U 2816,3430,3599,3773,4224,4802,5183,5929,6336,7040,9317,9504,9856,10403

%N Numbers k such that the difference between the largest and the smallest prime divisor of k equals the number of prime divisors of k (counted with multiplicity).

%H Amiram Eldar, <a href="/A086770/b086770.txt">Table of n, a(n) for n = 1..10000</a>

%e 112 is a term because 112 = 2^4*7 with 5 primes dividing it and 7-2=5.

%t seqQ[1] = True; seqQ[n_] := Plus @@ Last /@ (f = FactorInteger[n]) == f[[-1, 1]] - f[[1, 1]]; Select[Range[10^4], seqQ] (* _Amiram Eldar_, Dec 16 2019 *)

%o (Magma) f:=func<n|&+[p[2]: p in Factorization(n)]>; [1] cat [k:k in [2..10000]| Max(PrimeDivisors(k))-Min(PrimeDivisors(k)) eq f(k)]; // _Marius A. Burtea_, Dec 16 2019

%o (PARI) print1("1, "); for(k=2,10500,my(f=factor(k));if(bigomega(k)==vecmax(f[, 1])-f[1,1],print1(k,", "))) \\ _Hugo Pfoertner_, Dec 16 2019

%Y Cf. A001222, A006530, A046665.

%K nonn

%O 1,2

%A _Jason Earls_, Aug 02 2003

%E Name edited by _Hugo Pfoertner_, Dec 16 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 August 27 03:11 EDT 2024. Contains 375462 sequences. (Running on oeis4.)