OFFSET
1,2
COMMENTS
This sequence is not to be confused with A333931.
The corresponding record values are 1, 2, 4, 6, 8, 16, 40, 52, 96, ...
Fink (2019) defined this sequence. He asked whether 720 is the largest term that is also highly composite number (A002182).
This is, except the terms 2, the sequence records of indices of A074206 for positive n as a(n) = 2*A074206(n), n>1, i.e. A307866. (formula from - Vladeta Jovovic, Jul 03 2005) - David A. Corneth, Apr 13 2020
LINKS
David A. Corneth, Table of n, a(n) for n = 1..291 (first 120 terms from Amiram Eldar)
Thomas Fink, Recursively divisible numbers, arXiv:1912.07979 [math.NT], 2019. See section 5.
T. M. A. Fink, Number of ordered factorizations and recursive divisors, arXiv:2307.16691 [math.NT], 2023.
EXAMPLE
The first 6 terms of A067824 are 1, 2, 2, 4, 2, 6. The record values occur at 1, 2, 4, 6, the first 4 terms of this sequence.
MATHEMATICA
d[1] = 1; d[n_] := d[n] = 1 + DivisorSum[n, d[#] &, # < n &]; seq={}; dm = 0; Do[d1 = d[n]; If[d1 > dm, dm = d1; AppendTo[seq, n]], {n, 1, 10^4}]; seq
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Apr 11 2020
STATUS
approved