OFFSET
0,3
COMMENTS
1^b(m,1) is considered here to be 1 for all m.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
EXAMPLE
The highest power of 1 dividing a(6) is 1. The highest power of 2 dividing a(5) is 1. The highest power of 3 dividing a(4) is 3. The highest power of 4 dividing a(3) is 1. The highest power of 5 dividing a(2) is 1. And the highest power of 6 dividing a(1) is 1. So a(7) = 1+1+3+1+1+1 = 8.
MATHEMATICA
b[m_, k_] := If[k == 1, 1, IntegerExponent[m, k]]; f[l_List] := Append[l, Sum[k^b[l[[Length[l] + 1 - k]], k], {k, Length[l]}]]; Nest[f, {1}, 70] (* Ray Chandler, Oct 17 2006 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Oct 11 2006
EXTENSIONS
Extended by Ray Chandler, Oct 17 2006
STATUS
approved