A132652 Sum of divisors of n, sigma(n) raised to power sigma(n).
1, 27, 256, 823543, 46656, 8916100448256, 16777216, 437893890380859375, 302875106592253, 39346408075296537575424, 8916100448256, 33145523113253374862572728253364605812736, 11112006825558016, 1333735776850284124449081472843776
Offset: 1
Examples
a(4) = 823543 because sigma(4) = 1 + 2 + 4 = 7 and we can write 823543 = 7^7 or 823543 = 7*7*7*7*7*7*7.
Programs
-
Mathematica
Table[DivisorSigma[1,n]^DivisorSigma[1,n],{n,14}] (* Stefano Spezia, Sep 10 2022 *)
Formula
a(n) = sigma(n)^sigma(n).
Comments