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!)
A068405 Numbers k such that (k+1) is squarefree and composite and such that there is one more distinct prime factor in k than in (k+1). 2
84, 90, 105, 110, 114, 132, 140, 154, 165, 182, 186, 204, 220, 234, 246, 252, 258, 264, 266, 273, 286, 290, 294, 300, 308, 318, 322, 340, 345, 354, 357, 364, 370, 380, 385, 402, 406, 410, 414, 426, 444, 450, 465, 468, 470, 480, 492, 504, 516, 518, 525, 532 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k such that (1-isprime(k+1))*issquarefree(k+1)*omega(k) = omega(k+1)+1.
Contains 15*p if p is a prime > 5 such that (15*p + 1)/2 is prime. Thus Dickson's conjecture would imply that this sequence is infinite. - Robert Israel, May 24 2017
LINKS
EXAMPLE
For example 322 = 2*7*23 has 3 distinct prime factors and 323=17*19 has 2 distinct prime factors, hence 322 is in the sequence.
MAPLE
Res:= NULL:
F:= []:
for n from 2 to 600 do
Fp:= ifactors(n+1)[2];
if nops(Fp) > 1 and max(seq(f[2], f=Fp)) = 1 and nops(F) = nops(Fp)+1 then Res:= Res, n fi;
F:= Fp;
od:
Res; # Robert Israel, May 24 2017
MATHEMATICA
Select[Range[500], CompositeQ[# + 1] && SquareFreeQ[# + 1] && PrimeNu[#] - PrimeNu[# + 1] == 1 &] (* Amiram Eldar, Jun 04 2022 *)
CROSSREFS
Sequence in context: A341304 A128873 A095607 * A349760 A045569 A219183
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Mar 09 2002
STATUS
approved

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 25 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)