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!)
A249902 Numbers n such that 2n-1 and sigma(n) are both primes. 3
2, 4, 9, 16, 64, 289, 1681, 2401, 3481, 4096, 15625, 65536, 85849, 262144, 491401, 531441, 552049, 683929, 703921, 734449, 1352569, 1885129, 3411409, 3892729, 5470921, 7091569, 7778521, 9247681, 10374841, 12652249, 18139081, 19439281, 22287841, 23902321 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Intersection of A006254 and A023194.
Sequence is a supersequence of the even superperfect numbers m_k (A061652 or even terms from A019279) because sigma(m_k) = 2*(m_k)-1 = k-th Mersenne prime A000668(k) for k>=1.
Conjecture: 2 and 9 are the only numbers n such that 2n - 1, 2n + 1 and sigma(n) are all primes.
LINKS
EXAMPLE
289 is in the sequence because 2*289 - 1 = 577 and sigma(289) = 307 (both primes).
MATHEMATICA
Select[Range[10^7], PrimeQ[2 # - 1] && PrimeQ[DivisorSigma[1, #]] &] (* Vincenzo Librandi, Nov 15 2014 *)
PROG
(Magma) [n: n in [2..10000000] | IsPrime(2*n-1) and IsPrime(SumOfDivisors(n))];
(PARI) for(n=1, 10^6, if(isprime(2*n-1)&&isprime(sigma(n)), print1(n, ", "))) \\ Derek Orr, Nov 14 2014
(Python)
from sympy import isprime, divisor_sigma
A249902_list = [2]+[n for n in (d**2 for d in range(1, 10**3)) if isprime(2*n-1) and isprime(divisor_sigma(n))] # Chai Wah Wu, Jul 23 2016
CROSSREFS
Sequence in context: A283059 A283081 A344265 * A060401 A063981 A131095
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Nov 14 2014
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 23 14:32 EDT 2024. Contains 371914 sequences. (Running on oeis4.)