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

A085347
Least number x so that number of primes not exceeding sigma(x) equals n.
7
0, 2, 5, 4, 6, 8, 10, 19, 12, 29, 16, 18, 20, 43, 33, 28, 24, 32, 67, 30, 45, 57, 44, 36, 52, 101, 63, 85, 91, 48, 64, 86, 137, 66, 149, 99, 106, 163, 60, 129, 88, 80, 105, 72, 197, 104, 100, 84, 147, 229, 90, 114, 112, 96, 171, 148, 136, 201, 108, 281, 138, 152, 172
OFFSET
1,2
LINKS
FORMULA
a(n) = Min{x; A070803(x)=n};
MATHEMATICA
{0}~Join~Table[x = 1; While[PrimePi@ DivisorSigma[1, x] != n, x++]; x, {n, 2, 63}] (* Michael De Vlieger, Feb 05 2017 *)
PROG
(PARI) a(n) = if (n==1, 0, x = 1; while(primepi(sigma(x))!= n, x++); x); \\ Michel Marcus, Dec 11 2013
KEYWORD
nonn
AUTHOR
Labos Elemer, Jul 10 2003
STATUS
approved