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!)
A171720 Primes p such that (p-1)/2 and (p+1)/2 have same sum of divisors. 3
29, 2729, 29683, 37747, 73133, 149837, 159667, 168269, 185371, 244147, 695477, 880027, 891749, 910747, 1088669, 1298309, 1371991, 1479113, 2414717, 3531329, 6593729, 7452019, 9590311, 13542811, 14527889, 15592877, 18718939, 25650533 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If sigma((p-1)/2) is odd then p is of the form n^2+1.
LINKS
MATHEMATICA
Select[Prime[Range[1700000]], DivisorSigma[1, (#-1)/2] == DivisorSigma[1, (#+1)/2]&] (* Harvey P. Dale, Jul 23 2011 *)
PROG
(PARI) for(n=2, 10^6, if(sigma((prime(n)-1)/2)==sigma((prime(n)+1)/2), print(prime(n))))
(Magma) [ p: p in PrimesInInterval(3, 30000000) | SumOfDivisors((p-1) div 2) eq SumOfDivisors((p+1) div 2) ];
CROSSREFS
Sequence in context: A370339 A316333 A281440 * A305138 A091751 A144233
KEYWORD
nonn
AUTHOR
Filip Jevtic (mm07006(AT)alas.math.rs), Dec 16 2009, Dec 19 2009
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 April 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)