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!)
A285787 Least number k such that the absolute value of the difference between the number of prime factors, with multiplicity, of k and k-1 is equal to n. 2

%I #28 Apr 27 2017 05:49:34

%S 3,2,8,17,32,97,128,257,769,2048,4097,6144,8192,40961,73728,65537,

%T 131072,524289,524288,3145728,6291456,8388608,18874368,50331648,

%U 113246209,167772161,268435457,805306368,1610612737,2147483649,2147483648,17179869184,21474836480

%N Least number k such that the absolute value of the difference between the number of prime factors, with multiplicity, of k and k-1 is equal to n.

%C a(n) <= A051900(n), with equality for n=3,5,7,8,13,15. - _Robert Israel_, Apr 26 2017

%H Giovanni Resta, <a href="/A285787/b285787.txt">Table of n, a(n) for n = 0..40</a>

%F Least solutions of the equation abs(A001222(k) - A001222(k-1)) = n.

%e a(9) = 2048 because 2047 = 23 * 89, 2048 = 2^11 and 11 - 2 = 9.

%p with(numtheory): P:=proc(q) local a,b,k,v; v:=array(0..100);

%p for k from 0 to 100 do v[k]:=0; od; a:=0;

%p for k from 2 to q do b:=bigomega(k); if v[abs(b-a)]=0 then v[abs(b-a)]:=k; fi; a:=b; od; k:=0;

%p while v[k]>0 do print(v[k]); k:=k+1; od; print(); end: P(10^6);

%t s = PrimeOmega@ Range[10^6]; 1 + First /@ Values@ KeySort@ PositionIndex@ Flatten@ Map[Abs@ Differences@ # &, Partition[s, 2, 1]] (* _Michael De Vlieger_, Apr 26 2017, Version 10 *)

%Y Cf. A001222, A051900, A076191, A285457.

%K nonn

%O 0,1

%A _Paolo P. Lava_, Apr 26 2017

%E a(24)-a(32) from _Giovanni Resta_, Apr 26 2017

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 May 3 15:33 EDT 2024. Contains 372218 sequences. (Running on oeis4.)