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.

Showing 1-1 of 1 results.

A234459 Real part of the product of all the integer complex numbers in the square [1,1] to [n,n].

Original entry on oeis.org

1, -20, 7800, 530400000, 2787453552000000, -7066368691421644800000000, 3108366378804858902744832000000000000, 1291087724942273632600239979303403520000000000000000
Offset: 1

Views

Author

Jon Perry, Dec 26 2013

Keywords

Examples

			For n = 2, we have (1 + i)(1 + 2i)(2 + i)(2 + 2i) which gives -20 + 0i, so a(2) = -20.
		

Crossrefs

Programs

  • JavaScript
    function cNumber(x, y) {
    return [x, y];
    }
    function cMult(a, b) {
    return [a[0] * b[0] - a[1] * b[1], a[0] * b[1] + a[1] * b[0]];
    }
    for (i = 1; i < 10; i++) {
    c = cNumber(1, 0);
    for (j = 1; j <= i; j++)
    for (k = 1; k <= i; k++)
    c = cMult(c, cNumber(j, k));
    document.write(c + "
    "); }
  • Mathematica
    Table[Re[Times@@Flatten[Table[a + b I, {a, n}, {b, n}]]], {n, 20}] (* Alonso del Arte, Feb 04 2014 *)
  • PARI
    a(n) = real(prod(i=1, n, prod(j=1, n, i+I*j))); \\ Michel Marcus, Dec 27 2013
Showing 1-1 of 1 results.