login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A119791
a(1) = 1, a(n) = number of divisors of n*a(n-1).
4
1, 2, 4, 5, 3, 6, 8, 7, 6, 12, 12, 15, 8, 10, 12, 14, 8, 15, 8, 12, 18, 18, 12, 18, 18, 18, 12, 20, 12, 24, 16, 10, 16, 12, 24, 24, 16, 12, 18, 30, 16, 24, 16, 14, 24, 20, 12, 21, 8, 15, 12, 20, 12, 20, 18, 30, 24, 20, 12, 30, 16, 12, 24, 20, 18, 24, 16, 14, 16, 24, 16, 24, 16, 12
OFFSET
1,2
COMMENTS
a(n)=A000005(n*a(n-1)) for n>1, a(1)=1;
see A119792 and A119793 for record values and where they occur: A119792(n)=a(A119793(n)).
LINKS
MATHEMATICA
Fold[Append[#1, DivisorSigma[0, #1[[-1]]*#2]] &, {1}, Range[2, 74]] (* Ivan Neretin, Sep 01 2016 *)
nxt[{n_, a_}]:={n+1, DivisorSigma[0, a(n+1)]}; NestList[nxt, {1, 1}, 80][[;; , 2]] (* Harvey P. Dale, Nov 16 2024 *)
CROSSREFS
Sequence in context: A065182 A060120 A065183 * A317687 A026257 A357986
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, May 24 2006
STATUS
approved