The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A157484 Numbers k such that k-+1 are divisible by exactly 4 primes, counted with multiplicity. 5

%I #9 Mar 22 2020 21:15:38

%S 55,89,151,197,233,249,295,307,329,341,343,349,461,489,491,569,571,

%T 665,713,739,775,851,857,859,869,871,949,1013,1015,1061,1097,1111,

%U 1149,1191,1205,1207,1209,1211,1219,1255,1275,1277,1291,1303,1315,1421,1431,1449,1483

%N Numbers k such that k-+1 are divisible by exactly 4 primes, counted with multiplicity.

%H Harvey P. Dale, <a href="/A157484/b157484.txt">Table of n, a(n) for n = 1..2000</a>

%e 55 is a term: 55-1 = 54 = 2*3*3*3 and 55+1 = 56 = 2*2*2*7.

%t q=4;lst={};Do[If[Plus@@Last/@FactorInteger[n-1]==q&&Plus@@Last/@FactorInteger[n+1]==q,AppendTo[lst,n]],{n,7!}];lst

%t SequencePosition[PrimeOmega[Range[1200]],{4,_,4}][[All,1]]+1 (* Requires Mathematica version 10 or later *) (* _Harvey P. Dale_, May 08 2019 *)

%o (PARI) is(k) = bigomega(k-1)==4 && bigomega(k+1)==4; \\ _Jinyuan Wang_, Mar 22 2020

%Y Cf. A014612, A124936, A157483.

%K nonn

%O 1,1

%A _Vladimir Joseph Stephan Orlovsky_, Mar 01 2009

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 June 8 17:52 EDT 2024. Contains 373227 sequences. (Running on oeis4.)