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.

A067467 Primes p such that p-1 has 3 distinct prime factors.

Original entry on oeis.org

31, 43, 61, 67, 71, 79, 103, 127, 131, 139, 151, 157, 181, 191, 199, 223, 229, 239, 241, 271, 277, 281, 283, 307, 311, 313, 337, 349, 367, 373, 379, 397, 409, 419, 431, 439, 443, 457, 461, 491, 499, 521, 523, 541, 599, 601, 607, 613, 617, 619, 643, 647, 659
Offset: 1

Views

Author

Benoit Cloitre, Feb 23 2002

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[150]],PrimeNu[#-1]==3&] (* Harvey P. Dale, Mar 13 2022 *)
  • PARI
    lista(nn) = {forprime(p=1, nn, if (omega(p-1) == 3, print1(p, ", ")););} \\ Michel Marcus, Nov 22 2013