OFFSET
1,2
COMMENTS
By definition a(n) is also the sum of the divisors of n-th generalized hexagonal number. - Omar E. Pol, Nov 24 2015
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
FORMULA
Sum_{k=1..n} a(k) ~ n^3/3. - Vaclav Kotesovec, Aug 18 2021
EXAMPLE
a(4)=18 because the sum of divisors of the 4th triangular number (i.e., 10) is 1 + 2 + 5 + 10 = 18.
MATHEMATICA
Table[DivisorSigma[1, n*(n + 1)/2], {n, 1, 100}] (* Vaclav Kotesovec, Aug 18 2021 *)
PROG
(PARI) a(n) = sigma(n*(n+1)/2); \\ Altug Alkan, Nov 24 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Shyam Sunder Gupta, Sep 21 2002
STATUS
approved