A366867 Products of sexy prime triples: sphenic numbers with prime factorization (p - 6)*p*(p + 6).
935, 1729, 4301, 11339, 49321, 102131, 146969, 298351, 386389, 1089019, 1221191, 3864241, 5171489, 12640949, 16965341, 18181979, 21243961, 43974269, 51881689, 178433279, 208506509, 223626691, 230324329, 270816731, 278421569, 393806449, 849244031, 932539661
Offset: 1
Keywords
Examples
5, 11, and 17 are primes p, p+6, p+12, called a sexy prime triple. 5*11*17 = 935, so 935 is a term. 7, 13, and 19 are the second set of sexy prime triples. 7*13*19=1729, so 1729 is the second term.
Links
- Matthew Goers, Table of n, a(n) for n = 1..1000 [a(535) corrected by _Georg Fischer_, Sep 21 2024]
Programs
-
Mathematica
(#*(#^2 - 36)) & /@ Select[Prime[Range[180]], PrimeQ[# - 6] && PrimeQ[# + 6] &] (* Amiram Eldar, Oct 27 2023 *)
-
PARI
apply(x->x*(x-6)*(x+6), select(x->(isprime(x-6) && isprime(x) && isprime(x+6)), [1..1000])) \\ Michel Marcus, Oct 27 2023