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

A073721
Numbers k such that primepi(k) divides sigma(k).
1
2, 3, 5, 6, 7, 14, 15, 21, 29, 38, 44, 57, 66, 78, 92, 94, 95, 106, 108, 114, 116, 118, 120, 133, 154, 174, 177, 182, 188, 232, 255, 300, 304, 305, 349, 351, 359, 413, 417, 418, 468, 488, 506, 526, 595, 615, 629, 688, 872, 945, 954, 1001, 1002, 1006, 1011, 1018
OFFSET
1,1
FORMULA
{k : A000203(k)/A000720(k) is an integer}.
MATHEMATICA
Do[s=Mod[DivisorSigma[1, n], PrimePi[n]]; If[s==0, Print[n]], {n, 1, 2500}]
Select[Range[2, 1200], Divisible[DivisorSigma[1, #], PrimePi[#]]&] (* Harvey P. Dale, Jan 31 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Aug 05 2002
STATUS
approved