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!)
A051675 "Second factorials": Product_{k=1..n} k^(k^2). 17
1, 16, 314928, 1352605460594688, 403107840000000000000000000000000, 4157825501361955044460594652554199040000000000000000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
REFERENCES
Spyros G. Kanellos: Mathematical Researches and Results [in Greek]. Athens, 1965.
LINKS
Karim Belabas and Henri Cohen, Numerical Algorithms for Number Theory Using PariGP, American Mathematical Society, 2021, p. 196.
FORMULA
a(n) ~ n^(n*(n+1)*(2n+1)/6) / exp(n^3/9 - n/12 - Zeta(3)/(4*Pi^2)), where Zeta(3) = A002117 = 1.2020569031595942853997... . - Vaclav Kotesovec, Feb 20 2015
MAPLE
A051675 := proc(n) local k; mul(k^(k^2), k=1..n); end;
MATHEMATICA
Table[Product[k^(k^2), {k, 1, n}], {n, 1, 10}] (* Vaclav Kotesovec, Feb 20 2015 *)
PROG
(PARI) for(n=1, 10, print1(prod(k=1, n, k^(k^2)), ", ")) \\ G. C. Greubel, Oct 14 2018
(Magma) [(&*[k^(k^2): k in [1..n]]): n in [1..10]]; // G. C. Greubel, Oct 14 2018
CROSSREFS
Cf. A243262.
Sequence in context: A343245 A300197 A297386 * A288951 A175988 A013804
KEYWORD
nonn,easy
AUTHOR
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 1 05:44 EDT 2024. Contains 372148 sequences. (Running on oeis4.)