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.

A072282 Numbers n such that sigma(n) + 1 and sigma(n) - 1 are twin primes.

Original entry on oeis.org

3, 5, 6, 10, 11, 17, 20, 24, 26, 29, 30, 38, 41, 46, 51, 55, 59, 71, 85, 88, 101, 105, 107, 114, 118, 126, 135, 136, 137, 141, 145, 147, 149, 155, 158, 161, 177, 178, 179, 185, 191, 197, 203, 206, 207, 209, 216, 227, 230, 236, 238, 239, 255, 269, 278, 281, 296
Offset: 1

Views

Author

Joseph L. Pe, Jul 10 2002

Keywords

Examples

			sigma(20) + 1 = 43 and sigma(20) - 1 = 41, so 20 is a term of the sequence.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[10^3], PrimeQ[DivisorSigma[1, # ] + 1] && PrimeQ[DivisorSigma[1, # ] - 1] &]
    Select[Range[300],AllTrue[DivisorSigma[1,#]+{1,-1},PrimeQ]&] (* Harvey P. Dale, Apr 06 2023 *)
  • PARI
    isok(n) = my(p=sigma(n)-1); isprime(p) && isprime(p+2); \\ Michel Marcus, Sep 30 2019

Extensions

More terms from Amiram Eldar, Sep 30 2019