login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A063451
Numbers k such that k*sigma(k) - 1 is a prime.
1
2, 3, 5, 6, 10, 11, 13, 15, 18, 19, 20, 24, 26, 28, 31, 33, 41, 50, 51, 53, 56, 59, 60, 63, 70, 76, 78, 80, 82, 83, 86, 89, 90, 93, 95, 99, 101, 102, 103, 104, 111, 116, 122, 123, 131, 132, 142, 143, 144, 145, 146, 148, 149, 150, 152, 153, 154, 155, 156, 161, 163
OFFSET
1,1
LINKS
PROG
(PARI) j=[]; for(n=1, 350, if(isprime(n*sigma(n)-1), j=concat(j, n))); j
(PARI) n=0; for (m=1, 10^9, if (isprime(m*sigma(m) - 1), write("b063451.txt", n++, " ", m); if (n==1000, break))) \\ Harry J. Smith, Aug 21 2009
CROSSREFS
Sequence in context: A094739 A302494 A302534 * A276625 A297571 A316503
KEYWORD
easy,nonn
AUTHOR
Jason Earls, Jul 25 2001
STATUS
approved