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.
%I A323546 #17 Jan 26 2019 02:16:26 %S A323546 0,1,131072,2843192875329,94689598336441253888, %T A323546 30456484467910986480712890625,24450543078081443740165325452474318848, %U A323546 74458223912158060479139869222818674648092178561,545831702006800417886454373052629612732034857946832699392 %N A323546 a(n) = Product_{k=0..n} (k^8 + (n-k)^8). %H A323546 Seiichi Manyama, <a href="/A323546/b323546.txt">Table of n, a(n) for n = 0..71</a> %F A323546 a(n) ~ exp(((2*sqrt(2+sqrt(2)) - 1/2 - sqrt(2))*Pi - 8)*n) * n^(8*n+8). %t A323546 Table[Product[k^8+(n-k)^8, {k, 0, n}], {n, 0, 10}] %o A323546 (PARI) m=8; vector(10, n, n--; prod(k=0,n, k^m + (n-k)^m)) \\ _G. C. Greubel_, Jan 18 2019 %o A323546 (Sage) m=8; [product(k^m +(n-k)^m for k in (0..n)) for n in (0..10)] # _G. C. Greubel_, Jan 18 2019 %Y A323546 Cf. A323538, A323540, A323541, A323542, A323543, A323544, A323545, A320345. %Y A323546 Cf. 2*A000542 (with sum instead of product). %K A323546 nonn %O A323546 0,3 %A A323546 _Vaclav Kotesovec_, Jan 17 2019