OFFSET
1,2
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000
Richard Bellman and Harold N. Shapiro, On a problem in additive number theory, Annals Math., 49 (1948), 333-340.
Imre Kátai, On the iteration of the divisor-function, Publ. Math. Debrecen, Vol. 16 (1969), pp. 3-15.
FORMULA
a(1) = 1; a(n + 1) = a(n) + A036450(n + 1) for n > 0. - David A. Corneth, Oct 17 2017
a(n) = (1 + o(1)) * c * n * log(log(log(n))), where c > 0 is a constant (Kátai, 1969). - Amiram Eldar, Apr 17 2024
MATHEMATICA
Accumulate[Table[DivisorSigma[0, DivisorSigma[0, DivisorSigma[0, n]]], {n, 80}]] (* Alonso del Arte, Oct 17 2017 *)
PROG
(PARI) a(n) = sum(k=1, n, numdiv(numdiv(numdiv(k)))); \\ Michel Marcus, Oct 17 2017
(PARI) first(n) = {my(v = vector(n)); v[1] = 1; for(i=2, n, v[i] = v[i-1] + numdiv(numdiv(numdiv(i)))); v} \\ David A. Corneth, Oct 17 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 17 2017
STATUS
approved