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!)
A105936 Numbers that are the product of exactly 3 primes and are of the form prime(n) + prime(n+1). 4
8, 12, 18, 30, 42, 52, 68, 78, 138, 172, 186, 222, 258, 268, 410, 434, 508, 548, 618, 668, 762, 772, 786, 892, 906, 946, 978, 1002, 1030, 1132, 1334, 1374, 1446, 1542, 1606, 1758, 1866, 1878, 1948, 2006, 2022, 2252, 2334, 2414, 2452, 2468, 2486, 2572, 2588 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Minimal triprimes (A014612) of the form prime(n) + prime(n+1).
Intersection of A001043 and A014612:
a(1) = A001043(2) = A014612(1),
a(2) = A001043(2) = A014612(2). - Zak Seidov, Jan 31 2017
LINKS
Eric Weisstein's World of Mathematics, Almost Prime.
FORMULA
a(n) is equal to the product of 3 primes if the arithmetic mean of prime(n) and prime(n+1) is a semiprime.
EXAMPLE
a(2) = 12 because 12 = 5 + 7 = 3*2^2;
a(3) = 18 because 18 = 7 + 11 = 2*3^2.
MATHEMATICA
Select[Range[8, 10000, 2], 3 == PrimeOmega[#] && NextPrime[#/2] + NextPrime[#/2, -1] == # &] (* Zak Seidov, Jan 31 2017 *)
PROG
(PARI) list(lim)=my(v=List()); forprime(p=2, lim\2, forprime(q=2, min(p, lim\p\2), my(t=2*p*q); if(precprime(p*q)+nextprime(p*q)==t, listput(v, t)))); Set(v) \\ Charles R Greathouse IV, Feb 01 2017
CROSSREFS
Sequence in context: A274951 A364776 A033477 * A168670 A291758 A232867
KEYWORD
easy,nonn
AUTHOR
Giovanni Teofilatto, Apr 27 2005
EXTENSIONS
More terms from Reinhard Zumkeller, May 03 2005
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 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)