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!)
A068017 Composite n such that sigma(n) - 1 and sigma(n) + 1 are twin primes. 5

%I #16 Apr 24 2019 03:26:36

%S 6,10,20,24,26,30,38,46,51,55,85,88,105,114,118,126,135,136,141,145,

%T 147,155,158,161,177,178,185,203,206,207,209,216,230,236,238,255,278,

%U 296,321,344,346,355,371,377,384,391,396,398,416,424,447,462,486,500

%N Composite n such that sigma(n) - 1 and sigma(n) + 1 are twin primes.

%H Harvey P. Dale, <a href="/A068017/b068017.txt">Table of n, a(n) for n = 1..1000</a>

%e For n=46, sigma(46)=1+2+23+46=72, for n=51, sigma(51)=1+3+17+51=72 and also for n=55, sigma(55)=1+5+11+55=72 is the middle term of {71,73} twins.

%t Do[s=-1+DivisorSigma[1, n]; s1=1+DivisorSigma[1, n]; If[PrimeQ[s]&&PrimeQ[s1]&&!PrimeQ[n], Print[n]], {n, 1, 2000}]

%t cntpQ[n_]:=Module[{ds=DivisorSigma[1,n]},CompositeQ[n]&&AllTrue[ds+{1,-1}, PrimeQ]]; Select[Range[500],cntpQ] (* The program uses the AllTrue function from Mathematica version 10 *) (* _Harvey P. Dale_, Mar 05 2015 *)

%o (PARI) isok(n) = my(s=sigma(n)); !isprime(n) && isprime(s-1) && isprime(s+1); \\ _Michel Marcus_, Apr 24 2019

%Y Cf. A000203, A072282.

%K nonn

%O 1,1

%A _Labos Elemer_, Feb 08 2002

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 April 25 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)