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!)
A285634 a(1) = 4, a(n) = Product_{d|a(n-1)} d. 0
4, 8, 64, 2097152, 3450873173395281893717377931138512726225554486085193277581262111899648 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Iterating the product-of-divisors function.
The next term is too large to include.
Let a(n) = Product_{d|a(n-1)} d, with a(1) = p^k, p is a prime, k >= 0 and b(n) = b(n-1)*(b(n-1) + 1)/2, with b(1) = k, then a(n) = p^b(n).
The next term has 8067 digits. - Harvey P. Dale, Apr 18 2019
LINKS
Eric Weisstein's World of Mathematics, Divisor Product
FORMULA
a(1) = 4, a(n) = a(n-1)^(A000005(a(n-1))/2).
a(n) = 2^A007501(n-1).
EXAMPLE
a(1) = 4;
a(2) = 8 because 4 has 3 divisors {1, 2, 4} and 1*2*4 = 8;
a(3) = 64 because 64 has 7 divisors {1, 2, 4, 8, 16, 32, 64} and 1*2*4*8*16*32*64 = 2097152, etc.
...
a(6) = 2^26796;
a(7) = 2^359026206;
a(8) = 2^64449908476890321;
a(9) = 2^2076895351339769460477611370186681, etc.
MATHEMATICA
RecurrenceTable[{a[1] == 4, a[n] == Sqrt[a[n - 1]]^DivisorSigma[0, a[n - 1]]}, a, {n, 5}]
NestList[Times@@Divisors[#]&, 4, 4] (* Harvey P. Dale, Apr 18 2019 *)
CROSSREFS
Sequence in context: A075787 A086891 A117636 * A228930 A051226 A013112
KEYWORD
nonn,easy
AUTHOR
Ilya Gutkovskiy, Apr 23 2017
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 April 25 13:24 EDT 2024. Contains 371971 sequences. (Running on oeis4.)