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!)
A323589 a(n) = Product_{k=1..n-1} (k^k + (n-k)^(n-k)). 5
1, 1, 2, 25, 6272, 63473089, 35671256150400, 1706937496190389809801, 7511133178157708431911079116800, 4755809816953036991699151550498501702425129, 394143276257895110158515904775794405720952934400000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ n^(3*n^2/4 - n) * 2^(n^2/4 + 7/6) / exp(3*n^2/8) if n is even.
a(n) ~ n^(3*n^2/4 - n + 1/4) * 2^(n^2/4 - 1/12) / exp(3*n^2/8 - 1/4) if n is odd.
MATHEMATICA
Table[Product[k^k+(n-k)^(n-k), {k, 1, n-1}], {n, 0, 12}]
PROG
(PARI) vector(12, n, n--; prod(k=1, n-1, k^k+(n-k)^(n-k))) \\ G. C. Greubel, Feb 08 2019
(Magma) [1, 1] cat [(&*[k^k + (n-k)^(n-k): k in [1..n-1]]): n in [2..12]]; // G. C. Greubel, Feb 08 2019
(Sage) [product(k^k + (n-k)^(n-k) for k in (1..n-1)) for n in (0..12)] # G. C. Greubel, Feb 08 2019
CROSSREFS
Sequence in context: A210836 A369675 A088816 * A141415 A056948 A292359
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Jan 18 2019
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 05:56 EDT 2024. Contains 371964 sequences. (Running on oeis4.)