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.

A067386 Primes p such that p+1 and p-1 have the same number of distinct prime factors.

Original entry on oeis.org

3, 11, 13, 19, 23, 37, 47, 53, 73, 97, 107, 131, 139, 163, 181, 193, 229, 239, 281, 307, 311, 349, 373, 379, 383, 409, 439, 443, 487, 491, 521, 577, 599, 601, 617, 619, 643, 683, 701, 709, 727, 739, 743, 761, 811, 821, 827, 829, 853, 863, 881, 883, 919, 937
Offset: 1

Views

Author

Benoit Cloitre, Feb 23 2002

Keywords

Crossrefs

Cf. A115103 (same number of prime factors with multiplicity).

Programs

  • Maple
    q:= p-> isprime(p) and nops(ifactors(p+1)[2])=nops(ifactors(p-1)[2]):
    select(q, [$1..1000])[];  # Alois P. Heinz, May 08 2022
  • Mathematica
    Select[Prime[Range[200]],PrimeNu[#-1]==PrimeNu[#+1]&] (* Harvey P. Dale, Jun 28 2020 *)
  • PARI
    is(n)=omega(n-1)==omega(n+1) && isprime(n) \\ Charles R Greathouse IV, Sep 14 2015