[go: up one dir, main page]

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!)
A111192 Product of the n-th sexy prime pair. 9
55, 91, 187, 247, 391, 667, 1147, 1591, 1927, 2491, 3127, 4087, 4891, 5767, 7387, 9991, 10807, 11227, 12091, 17947, 23707, 25591, 28891, 30967, 37627, 38407, 51067, 52891, 55687, 64507, 67591, 70747, 75067, 78391, 96091, 98587, 111547, 122491 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Semiprime of the form 4*m^2-9 = (2*m-3)*(2*m+3). - Vincenzo Librandi, Jan 26 2016
LINKS
Eric Weisstein's World of Mathematics, Sexy Primes. [The definition in this webpage is unsatisfactory, because it defines a "sexy prime" as a pair of primes.- N. J. A. Sloane, Mar 07 2021].
FORMULA
a(n) = A023201(n) * A046117(n). [Reinhard Zumkeller, Sep 13 2011]
EXAMPLE
a(2)=91 because the second sexy prime pair is (7, 13) and 7*13=91.
MATHEMATICA
#(#+6)&/@Select[Prime[Range[100]], PrimeQ[#+6]&] [Harvey P. Dale, Dec. 17, 2010]
(* For checking large numbers, the following code is better. For instance, we could use the fQ function to determine that 229031718473564142083 is not in this sequence. *) fQ[n_] := Block[{fi = FactorInteger[n]}, Last@# & /@ fi == {1, 1} && Differences[ First@# & /@ fi] == {6}]; Select[ Range[125000], fQ] (* Robert G. Wilson v, Feb 08 2012 *)
Select[Table[4 n^2 - 9, {n, 300}], PrimeOmega[#] == 2 &] (* Vincenzo Librandi, Jan 26 2016 *)
PROG
(Haskell)
a111192 n = a111192_list !! (n-1)
a111192_list = f a000040_list where
f (p:ps@(q:r:_)) | q - p == 6 = (p*q) : f ps
| r - p == 6 = (p*r) : f ps
| otherwise = f ps
-- Reinhard Zumkeller, Sep 13 2011
(Magma) IsSemiprime:=func<n | &+[d[2]: d in Factorization(n)] eq 2>; [s: n in [1..300] | IsSemiprime(s) where s is 4*n^2-9]; // Vincenzo Librandi, Jan 26 2016
CROSSREFS
Cf. A037074, A143206, A195118; intersection of A143205 and A001358.
Sequence in context: A247681 A195118 A143205 * A063873 A063131 A128880
KEYWORD
nonn
AUTHOR
Shawn M Moore (sartak(AT)gmail.com), Oct 23 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 August 29 16:28 EDT 2024. Contains 375517 sequences. (Running on oeis4.)