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.

Previous Showing 11-11 of 11 results.

A271550 Numbers n such that n is a squarefree semiprime (i.e., omega(n) = 2 = Omega(n)) and phi(n) + 1 is a prime.

Original entry on oeis.org

6, 10, 14, 21, 22, 26, 34, 38, 46, 55, 57, 58, 62, 74, 77, 82, 86, 91, 93, 94, 95, 106, 111, 115, 118, 119, 122, 133, 134, 142, 145, 146, 158, 166, 178, 194, 202, 206, 209, 214, 217, 218, 221, 226, 237, 254, 262, 274, 278, 287, 291, 295, 298, 302, 305, 314, 319, 326, 329
Offset: 1

Views

Author

Keywords

Comments

Equals (A001358 intersection A039698) - A001248.

Examples

			21 is in the sequence, because 21 = 3*7 is a semiprime with omega(21) = 2 and phi(21) + 1 = 2*6 + 1 = 13 is a prime.
55 is in the sequence, because 55 = 5*11 is a semiprime with omega(55) = 2 and phi(55) + 1 = 4*10 + 1 = 41 is a prime.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[400],SquareFreeQ[#]&&PrimeOmega[#]==2&&PrimeQ[EulerPhi[ #]+ 1]&] (* Harvey P. Dale, Aug 08 2020 *)
  • PARI
    is(n)=my(f=factor(n)); f[, 2]==[1, 1]~ && isprime((f[1, 1]-1)*(f[2, 1]-1)+1) \\ Charles R Greathouse IV, Jul 21 2016
Previous Showing 11-11 of 11 results.