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.

A209585 Number of n X n 0..n arrays with every element equal to a diagonal or antidiagonal reflection.

Original entry on oeis.org

2, 81, 28672, 791015625, 191221621088256, 7860041410116536427241, 2836619246897071128576000000000, 304913968803300753908857213381006097576481
Offset: 1

Views

Author

R. H. Hardin Mar 10 2012

Keywords

Comments

Diagonal of A209593

Examples

			Some solutions for n=3
..0..0..1....3..0..2....2..0..1....0..3..0....2..0..0....3..3..3....0..2..2
..0..1..1....1..0..0....0..1..3....2..3..3....2..3..0....2..1..3....2..1..2
..3..1..2....0..1..1....1..3..3....3..2..2....2..2..3....0..2..0....0..2..3
		

Formula

a(n) = (n+1) ^ (2n-(n modulo 2)) * ((n+1)*(2n+1)) ^ ((n*n-2n+(n modulo 2))/4)