OFFSET
1,3
COMMENTS
The most common sum of divisor count of all previous terms changes as n increases; these values, up to 2 million terms, are 1, 12, 24, 12, 24, 72, 720, 72, 720, 72, 720, 72, 720. The value 72 holds the record from a(6998) = 71 to a(1271035) = 563. After a(1285242) = 264 the divisor sum 720 becomes the most common sum to well beyond 10 million terms. It is likely the record becomes arbitrarily large as n increases.
LINKS
Scott R. Shannon, Image of the first 2000000 terms.
EXAMPLE
PROG
(PARI) lista(nn) = my(va = vector(nn), vs=vector(nn)); va[1] = 1; vs[1] = 1; for (n=2, nn, va[n] = #select(x->(x==vs[n-1]), vs); vs[n] = sigma(va[n]); ); va; \\ Michel Marcus, Jan 31 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Scott R. Shannon, Jan 31 2023
STATUS
approved