editing
approved
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”).
editing
approved
A080224 := proc(n)
a := 0 ;
for d in numtheory[divisors](n) do
if numtheory[sigma](d) > 2*d then
a := a+1 ;
end if;
end do:
a;
end proc:
seq(A080224(n), n=1..80) ; # R. J. Mathar, Feb 22 2021
approved
editing
proposed
approved
editing
proposed
Cf. also A294904.
approved
editing
editing
approved
Table[Count[Divisors[n], _?(DivisorSigma[1, #]>2#&)], {n, 110}] (* Harvey P. Dale, Jun 14 2013 *)
approved
editing