OFFSET
0,2
COMMENTS
The sum of divisors function A000203 seems to behave with a certain periodicity of period 6.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..9999
MATHEMATICA
Array[DivisorSigma[1, 6 # + 1] &, 66, 0] (* Michael De Vlieger, Aug 27 2023 *)
PROG
(PARI) a(n) = sigma(6*n+1); \\ Michel Marcus, Aug 28 2023
(Python)
from sympy import divisor_sigma
def A363031(n): return divisor_sigma(6*n+1) # Chai Wah Wu, Sep 07 2023
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, May 18 2023
STATUS
approved