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.

A185968 a(n) = n^2*2^(n^2-1).

Original entry on oeis.org

0, 1, 32, 2304, 524288, 419430400, 1236950581248, 13792273858822144, 590295810358705651712, 97922991388784963151200256, 63382530011411470074835160268800
Offset: 0

Views

Author

Geoffrey Critzer, Feb 07 2011

Keywords

Comments

a(n) is the number of elements (ordered pairs) in all binary relations on {1,2,...,n}.
Equivalently a(n) is the number of 1's in all n X n {0,1} matrices.

Crossrefs

Cf. A175716.

Programs

  • Mathematica
    Table[n^2 *2^(n^2-1),{n,0,10}]
  • PARI
    for(n=0,25, print1(n^2 *2^(n^2-1), ", ")) \\ G. C. Greubel, Jul 23 2017