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!)
A115166 Even numbers k such that k-2 and k+2 have the same number of distinct prime factors. 1
6, 8, 12, 16, 20, 22, 24, 26, 36, 38, 42, 46, 48, 50, 52, 54, 56, 60, 68, 70, 74, 78, 84, 90, 94, 96, 98, 102, 106, 110, 112, 114, 120, 128, 144, 146, 150, 152, 160, 162, 164, 172, 174, 184, 186, 188, 190, 194, 198, 204, 210, 214, 216, 232, 234, 236, 246, 252, 262 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
38 is in the sequence because 36 = 2^2 * 3^2 and 40 = 2^3 * 5.
MAPLE
with(numtheory): a:=proc(n) if nops(factorset(n-2))=nops(factorset(n+2)) then n else fi end: seq(a(2*n), n=2..133); # Emeric Deutsch, Mar 12 2006
MATHEMATICA
Select[Range[2, 262, 2], PrimeNu[# - 2] == PrimeNu[# + 2] &] (* Amiram Eldar, Feb 18 2020 *)
Select[Mean/@SequencePosition[PrimeNu[Range[300]], {x_, _, _, _, x_}], EvenQ] (* Harvey P. Dale, Oct 11 2023 *)
PROG
(PARI) g(n) = forstep(x=4, n, 2, p1=omega(x-2); p2=omega(x+2); if(p1==p2, print(x", ")))
(Magma) [k:k in [4.. 270 by 2]| #PrimeDivisors(k-2) eq #PrimeDivisors(k+2)]; // Marius A. Burtea, Feb 18 2020
CROSSREFS
Cf. A001221.
Subsequence of A005843.
Sequence in context: A177085 A338370 A194409 * A050992 A372011 A090259
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Mar 03 2006
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 May 14 05:21 EDT 2024. Contains 372528 sequences. (Running on oeis4.)