OFFSET
1,4
LINKS
Joerg Arndt, Table of n, a(n) for n = 1..10000
FORMULA
a(1) = 1 and a(n) = A064415(n) for n>=2. [Joerg Arndt, Apr 08 2014]
EXAMPLE
a(20) = a(2-1) + a(2-1) + a(5-1) = 1 + 1 +2 = 4 because 20 = 2*2*5.
MATHEMATICA
Fold[Append[#1, Total@ Table[#1[[p - 1]], {p, Flatten@ Map[ConstantArray[#1, #2] & @@ # &, FactorInteger[#2]]}]] &, {1}, Range[2, 105]] (* Michael De Vlieger, Dec 11 2017 *)
PROG
(PARI) a(n)=if (n<=1, 1, my(F=factor(n)); sum(e=1, #F[, 1], F[e, 2] * a(F[e, 1]-1) ) );
vector(200, n, a(n)) \\ Joerg Arndt, Apr 08 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Apr 20 2000
EXTENSIONS
Title clarified by Sean A. Irvine, Feb 18 2022
STATUS
approved