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!)
A323545 a(n) = Product_{k=0..n} (k^7 + (n-k)^7). 13
0, 1, 32768, 79593387129, 328983774635229184, 8781626117710113525390625, 570409595340477623191338982834176, 112244673425189306235795780017831813874289, 49449149324106963036650868175987491957290049732608, 48527312221741371319651099141827554314119977393170380398241 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ exp((8*cos((Pi + arctan(2769*sqrt(3)/239))/6)*Pi/sqrt(21)-6)*n) * n^(7*n+7).
Equivalently, a(n) ~ exp((4*Pi*sqrt(2*(13 + 19*sin(Pi/14) - sin(3*Pi/14))/7)/7 - 6)*n) * n^(7*n+7). - Vaclav Kotesovec, Jan 23 2019
MATHEMATICA
Table[Product[k^7+(n-k)^7, {k, 0, n}], {n, 0, 10}]
PROG
(PARI) m=7; vector(10, n, n--; prod(k=0, n, k^m + (n-k)^m)) \\ G. C. Greubel, Jan 18 2019
(Magma) m:=7; [(&*[k^m + (n-k)^m: k in [0..n]]): n in [0..10]]; // G. C. Greubel, Jan 18 2019
(Sage) m=7; [product(k^m +(n-k)^m for k in (0..n)) for n in (0..10)] # G. C. Greubel, Jan 18 2019
CROSSREFS
Cf. 2*A000541 (with sum instead of product).
Sequence in context: A236223 A183817 A303267 * A017693 A013963 A036093
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Jan 17 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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)