cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A366867 Products of sexy prime triples: sphenic numbers with prime factorization (p - 6)*p*(p + 6).

Original entry on oeis.org

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

Views

Author

Matthew Goers, Oct 25 2023

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.
		

Crossrefs

Cf. A006489, A111192. Subsequence of A007304.

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

Formula

a(n) = (A006489(n) - 6)*A006489(n)*(A006489(n) + 6).