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.

A184040 1/9 the number of (n+1) X (n+1) 0..2 arrays with all 2 X 2 subblocks having the same four values.

Original entry on oeis.org

9, 21, 41, 81, 153, 297, 569, 1113, 2169, 4281, 8441, 16761, 33273, 66297, 132089, 263673, 526329, 1051641, 2101241, 4200441, 8396793, 16789497, 33570809, 67133433, 134250489, 268484601, 536936441, 1073840121, 2147614713, 4295163897, 8590196729, 17180262393
Offset: 1

Views

Author

R. H. Hardin, Jan 08 2011

Keywords

Examples

			Some solutions for 5X5
..1..0..1..0..1....1..2..1..0..1....1..0..1..0..1....0..1..0..1..0
..1..0..1..0..1....0..0..0..2..0....2..0..2..0..2....1..1..1..1..1
..0..1..0..1..0....1..2..1..0..1....0..1..0..1..0....1..0..1..0..1
..0..1..0..1..0....0..0..0..2..0....0..2..0..2..0....1..1..1..1..1
..0..1..0..1..0....1..2..1..0..1....1..0..1..0..1....0..1..0..1..0
		

Crossrefs

Diagonal of A184048.

Programs

  • PARI
    Vec((9 - 6*x - 22*x^2 + 12*x^3)/((1 - x)*(1 - 2*x)*(1 - 2*x^2)) + O(x^32)) \\ Andrew Howroyd, Mar 09 2024

Formula

From Andrew Howroyd, Mar 09 2024: (Start)
a(n) = 3*a(n-1) - 6*a(n-3) + 4*a(n-4).
G.f.: x*(9 - 6*x - 22*x^2 + 12*x^3)/((1 - x)*(1 - 2*x)*(1 - 2*x^2)). (End)

Extensions

a(15) onwards from Andrew Howroyd, Mar 09 2024