cp's OEIS Frontend

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.

A323546 a(n) = Product_{k=0..n} (k^8 + (n-k)^8).

Original entry on oeis.org

0, 1, 131072, 2843192875329, 94689598336441253888, 30456484467910986480712890625, 24450543078081443740165325452474318848, 74458223912158060479139869222818674648092178561, 545831702006800417886454373052629612732034857946832699392
Offset: 0

Views

Author

Vaclav Kotesovec, Jan 17 2019

Keywords

Crossrefs

Cf. 2*A000542 (with sum instead of product).

Programs

  • Mathematica
    Table[Product[k^8+(n-k)^8, {k, 0, n}], {n, 0, 10}]
  • PARI
    m=8; vector(10, n, n--; prod(k=0,n, k^m + (n-k)^m)) \\ G. C. Greubel, Jan 18 2019
    
  • 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

Formula

a(n) ~ exp(((2*sqrt(2+sqrt(2)) - 1/2 - sqrt(2))*Pi - 8)*n) * n^(8*n+8).