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!)
A085842 Numbers k whose divisors (apart from 1 and k) sum to a prime. 3

%I #14 Dec 04 2020 09:24:38

%S 4,6,9,10,22,25,30,34,42,49,58,60,70,78,82,84,102,118,120,121,138,142,

%T 168,169,186,198,202,214,216,220,222,228,234,238,240,246,258,270,274,

%U 280,282,289,294,298,348,358,360,361,364,370,372,382,390,394,406,414,438,442,444

%N Numbers k whose divisors (apart from 1 and k) sum to a prime.

%H Amiram Eldar, <a href="/A085842/b085842.txt">Table of n, a(n) for n = 1..10000</a>

%e 102 is a member since the divisors of 102 are {1, 2, 3, 6, 17, 34, 51, 102} and 2 + 3 + ... + 51 = 113, a prime.

%p with(numtheory); b := []; for n from 3 to 2000 do t1 := divisors(n); t2 := convert(t1,list); t3 := add(t2[i],i=1..nops(t2)); if isprime(t3-1-n) then b := [op(b),n]; fi; od: b;

%t f[n_]:=Plus@@Divisors[n]-n-1; lst={};Do[a=f[n];If[PrimeQ[a],AppendTo[lst,n]],{n,7!}];lst (* _Vladimir Joseph Stephan Orlovsky_, Sep 21 2009 *)

%t Select[Range[500], PrimeQ[DivisorSigma[1, #] - # - 1] &] (* _Amiram Eldar_, Dec 04 2020 *)

%o (PARI) isok(k) = isprime(sigma(k)-1-k); \\ _Michel Marcus_, Dec 04 2020

%Y Cf. A037020, A048050.

%K nonn

%O 1,1

%A Chuck Seggelin (barkeep(AT)plastereddragon.com), Jul 05 2003

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 24 12:50 EDT 2024. Contains 371943 sequences. (Running on oeis4.)