A072815 Sum of proper divisors of 6n + 1.
0, 1, 1, 1, 6, 1, 1, 1, 8, 17, 1, 1, 1, 1, 23, 21, 1, 1, 1, 29, 12, 1, 27, 1, 35, 1, 1, 1, 14, 73, 1, 29, 1, 1, 47, 1, 39, 1, 1, 53, 1, 33, 35, 45, 59, 1, 1, 1, 18, 65, 51, 1, 1, 41, 109, 1, 1, 57, 1, 77, 20, 1, 1, 1, 191, 41, 1, 45, 1, 89, 1, 69, 1, 1, 95, 53, 1
Offset: 0
Keywords
Examples
a(1) = s(t(1)) = 1 since t(1) = 7 and s(7) = 1 under the definition of the restricted divisor function.
Links
- T. D. Noe, Table of n, a(n) for n = 0..1000
- Eric Weisstein's World of Mathematics, Restricted Divisor Function.
Programs
-
Mathematica
Table[c=6n+1; DivisorSigma[1,c]-c, {n,0,80}] (* Harvey P. Dale, Nov 13 2013 *)
-
PARI
a(n) = sigma(6*n + 1) - 6*n - 1; \\ Amiram Eldar, Apr 12 2024
Formula
Extensions
Corrected by Harvey P. Dale, Nov 13 2013
Comments