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”).

A063744
a(n) = sigma(a(n-1)) * number of divisors of a(n-1), a(1)=2.
1
2, 6, 48, 1240, 46080, 10537956, 4755179520, 21601740363840, 320026934857728000, 5141450783421628416000, 254900463912224253775282176, 22582740409889438693597632266240
OFFSET
1,1
LINKS
MATHEMATICA
NestList[DivisorSigma[1, #]DivisorSigma[0, #]&, 2, 15] (* Harvey P. Dale, Aug 09 2021 *)
PROG
(PARI) s(n) = if(n<2, n=2, sigma(s(n-1))*numdiv(s(n-1))); for(n=1, 20, print(s(n)))
(PARI) { for (n=1, 40, if (n>1, a=sigma(a)*numdiv(a), a=2); write("b063744.txt", n, " ", a) ) } \\ Harry J. Smith, Aug 29 2009
CROSSREFS
Sequence in context: A003053 A113296 A275462 * A141609 A096313 A346788
KEYWORD
easy,nonn
AUTHOR
Jason Earls, Aug 14 2001
STATUS
approved