A132639 Catalan number C(n) raised to power C(n).
1, 1, 4, 3125, 11112006825558016
Offset: 1
Keywords
Examples
a(4)=3125 because C(4)=5 and we can write 3125=5^5 or 3125=5*5*5*5*5.
Formula
a(n) = (C(n))^(C(n)).
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
a(4)=3125 because C(4)=5 and we can write 3125=5^5 or 3125=5*5*5*5*5.
a(5) = 823543 because p(5) = 7 and we can write 823543 = 7^7 or 823543 = 7*7*7*7*7*7*7.
a:= n-> (p-> p^p)(combinat[numbpart](n)): seq(a(n), n=0..11); # Alois P. Heinz, Nov 04 2024
Table[ PartitionsP@n ^ PartitionsP@n, {n, 10}] (* Robert G. Wilson v, Aug 28 2007 *)
a(12) = 46656 because d(12) = 6 and we can write 46656 = 6^6 or 46656.
Table[dn=DivisorSigma[0,n];dn^dn,{n,50}] (* James C. McMahon, Mar 08 2025 *)
a(2)=46656 because we can write 46656=6^6 or 46656=6*6*6*6*6*6.
a(n)=(n^2+n)^(n^2+n) \\ Charles R Greathouse IV, Mar 16 2022
a(n)=(n*=n+1)^n \\ Charles R Greathouse IV, Mar 16 2022
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.
Table[DivisorSigma[1,n]^DivisorSigma[1,n],{n,14}] (* Stefano Spezia, Sep 10 2022 *)
a(1)=4 because I(1)=2 and we can write 4=2^2 or 4=2*2.
Comments