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”).

A181561
Primes of the form highly abundant number + 1.
4
2, 3, 5, 7, 11, 13, 17, 19, 31, 37, 43, 61, 73, 97, 109, 181, 211, 241, 337, 421, 541, 601, 631, 661, 1009, 1201, 1621, 1801, 2161, 2341, 2521, 3121, 3361, 4201, 4621, 5881, 6121, 6301, 7561, 8821, 9241, 12241, 12601, 13441, 15121, 16381, 18481, 19801, 20161, 21841, 23761, 30241, 35281
OFFSET
1,1
LINKS
FORMULA
{A002093(i) + 1} INTERSECTION A000040.
{1 + (sigma(n) > sigma(m) for all m < n + 1)} INTERSECTION A000040.
EXAMPLE
The 52nd highly abundant number is 1800, add one to get 1801 which is prime.
MATHEMATICA
seq = {}; smax = 0; Do[s = DivisorSigma[1, n]; If[s > smax, smax = s; If[PrimeQ[n + 1], AppendTo[seq, n + 1]]], {n, 1, 10^4}]; seq (* Amiram Eldar, Jun 07 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Jonathan Vos Post, Jan 29 2011
STATUS
approved