OFFSET
0,5
COMMENTS
The square root of t(n) < s(t(4n-1, 4n-2, 4n-3, 4n-4)) < s(t(4n)).
LINKS
T. D. Noe, Table of n, a(n) for n = 0..1000
Eric Weisstein's World of Mathematics, Restricted Divisor Function.
FORMULA
EXAMPLE
a(1) = s(t(1)) = 1 since t(1) = 7 and s(7) = 1 under the definition of the restricted divisor function.
MATHEMATICA
Table[c=6n+1; DivisorSigma[1, c]-c, {n, 0, 80}] (* Harvey P. Dale, Nov 13 2013 *)
PROG
(PARI) a(n) = sigma(6*n + 1) - 6*n - 1; \\ Amiram Eldar, Apr 12 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Hisanobu Shinya (ilikemathematics(AT)hotmail.com), Jul 14 2002
EXTENSIONS
Corrected by Harvey P. Dale, Nov 13 2013
STATUS
approved