The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 12 19:25 EDT 2024. Contains 372494 sequences. (Running on oeis4.)