A262274 T(n,k)=Number of (n+2)X(k+2) 0..1 arrays with each row and column divisible by 5, read as a binary number with top and left being the most significant bits.
2, 4, 4, 7, 16, 7, 13, 49, 49, 13, 26, 169, 149, 169, 26, 52, 676, 585, 585, 676, 52, 103, 2704, 3639, 3253, 3639, 2704, 103, 205, 10609, 23977, 37061, 37061, 23977, 10609, 205, 410, 42025, 129481, 467065, 828152, 467065, 129481, 42025, 410, 820, 168100
Offset: 1
Examples
Some solutions for n=4 k=4 ..0..0..1..1..1..1....0..0..0..0..0..0....0..0..1..0..1..0....1..1..0..0..1..0 ..1..0..1..0..0..0....0..0..0..0..0..0....0..0..0..1..0..1....0..1..0..1..0..0 ..0..0..0..1..0..1....0..1..1..0..0..1....0..0..1..0..1..0....1..1..0..0..1..0 ..1..0..1..1..0..1....1..1..0..1..1..1....1..1..0..1..1..1....1..1..1..1..0..0 ..0..0..1..0..1..0....0..1..1..0..0..1....0..0..0..0..0..0....0..0..0..0..0..0 ..0..0..1..1..1..1....1..1..0..1..1..1....1..1..0..0..1..0....1..0..1..0..0..0
Links
- R. H. Hardin, Table of n, a(n) for n = 1..112
Formula
Empirical for column k:
k=1: a(n) = 3*a(n-1) -3*a(n-2) +3*a(n-3) -2*a(n-4)
k=2: [order 8]
k=3: [order 53]
Comments