A255344 Product_{k=1..n} k^(k^5).
1, 4294967296
Offset: 1
Keywords
References
- Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 2.15 Glaisher-Kinkelin constant, p. 137.
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 1..4
Programs
-
Mathematica
Table[Product[k^(k^5), {k, 1, n}], {n, 1, 5}] FoldList[Times,Table[k^k^5,{k,5}]] (* Harvey P. Dale, Aug 05 2025 *)
-
PARI
a(n)=prod(k=2,n,k^k^5) \\ Charles R Greathouse IV, Sep 08 2015
Formula
a(n) ~ A243265 * n^(n^2*(n+1)^2*(2*n^2+2*n-1)/12 + 1/252) / exp(47*n^2/720 - n^4/12 + n^6/36).
Comments