[go: up one dir, main page]

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

A008333
Sum of divisors of p+1, p prime.
14
4, 7, 12, 15, 28, 24, 39, 42, 60, 72, 63, 60, 96, 84, 124, 120, 168, 96, 126, 195, 114, 186, 224, 234, 171, 216, 210, 280, 216, 240, 255, 336, 288, 336, 372, 300, 240, 294, 480, 360, 546, 336, 508, 294, 468, 465, 378, 504, 560, 432, 546, 744, 399, 728, 528, 720, 720, 558
OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..999 (offset adapted by Michel Marcus)
FORMULA
a(n) = A000203(A008864(n)). - Michel Marcus, May 11 2016
a(n) = A000203(A000203(prime(n))) = A051027(prime(n)). - Michel Marcus, May 11 2016
MAPLE
for i from 1 to 500 do if isprime(i) then print(sigma(i+1)); fi; od;
MATHEMATICA
lst={}; Do[AppendTo[lst, DivisorSigma[1, Prime[n]+1]], {n, 6!}]; lst (* Vladimir Joseph Stephan Orlovsky, Sep 20 2008 *)
PROG
(PARI) a(n) = sigma(prime(n)+1); \\ Michel Marcus, May 11 2016
CROSSREFS
KEYWORD
nonn,easy
EXTENSIONS
Offset 1 from Michel Marcus, Apr 19 2020
STATUS
approved