The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A072282 Numbers n such that sigma(n) + 1 and sigma(n) - 1 are twin primes. 2
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
sigma(20) + 1 = 43 and sigma(20) - 1 = 41, so 20 is a term of the sequence.
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 *)
PROG
(PARI) isok(n) = my(p=sigma(n)-1); isprime(p) && isprime(p+2); \\ Michel Marcus, Sep 30 2019
CROSSREFS
Sequence in context: A187127 A187126 A065873 * A028727 A257346 A047327
KEYWORD
easy,nonn
AUTHOR
Joseph L. Pe, Jul 10 2002
EXTENSIONS
More terms from Amiram Eldar, Sep 30 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 4 13:10 EDT 2024. Contains 373098 sequences. (Running on oeis4.)