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

A083682
Sum of aliquot divisors of semiprimes.
1
3, 6, 4, 8, 10, 9, 11, 14, 6, 16, 15, 20, 13, 22, 17, 26, 8, 21, 17, 23, 32, 34, 19, 27, 40, 19, 44, 23, 46, 33, 21, 35, 50, 25, 56, 41, 29, 62, 25, 12, 64, 45, 47, 27, 70, 51, 74, 25, 35, 76, 37, 82, 57, 31, 86, 14, 63, 92, 65, 43, 29, 100, 71, 104, 37, 47, 106, 31, 75, 110, 49
OFFSET
1,1
LINKS
FORMULA
a(n) = A001065(A001358(n)). - Amiram Eldar, Sep 23 2019
EXAMPLE
a(1)=3 because sum of aliquot divisors of first semiprime i.e. 4 is 1+2=3.
MATHEMATICA
s[n_] := DivisorSigma[1, n] - n; s /@ Select[Range[300], PrimeOmega[#]==2 &] (* Amiram Eldar, Sep 23 2019 *)
CROSSREFS
Sequence in context: A154890 A248176 A100000 * A021278 A372789 A336761
KEYWORD
easy,nonn
AUTHOR
Shyam Sunder Gupta, Jun 15 2003
STATUS
approved