|
| |
|
|
A131524
|
|
Number of possible palindromic rows (or columns) in an n X n crossword puzzle.
|
|
6
| |
|
|
0, 0, 1, 1, 2, 2, 4, 4, 7, 7, 12, 12, 20, 20, 33, 33, 54, 54, 88, 88, 143, 143, 232, 232, 376, 376, 609, 609, 986, 986, 1596, 1596, 2583, 2583, 4180, 4180, 6764, 6764, 10945, 10945, 17710, 17710, 28656, 28656, 46367, 46367, 75024, 75024, 121392, 121392
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,5
|
|
|
COMMENTS
| To be an acceptable row, there must be at least one run of white squares and all runs of white squares must be of length at least three. Palindromic rows are of interest since if n is odd, the middle row of an n x n crossword puzzle must be palindromic if the puzzle is to have to usual rotational symmetry. Rather than use the explicit formula above, it is perhaps easier to observe that for all m, a(2m) = a(2m-1) and thus both the subsequences of odd-numbered terms and even-numbered terms are Fibonacci numbers - 1. (see A000071)
|
|
|
FORMULA
| Recurrence: a[n + 4] = a[n + 2] + a[n] + 1, a[1] = 0, a[2] = 0, a[3] = 1, a[4] = 1
a(n) = (2^(-n/2) (-5*2^(n/2)*(-1 + sqrt(5))^(3/2) + sqrt(5)*(1 + sqrt(5))^(n/2) (-sqrt(2)*(-1 + (-1)^n) + (1 + (-1)^n) sqrt(-1 + sqrt(5))) + 2 (-1 + sqrt(5))^(n/2) (sqrt(-55 + 25 sqrt(5)) cos(n Pi)/2 + sqrt(2) (-5 + 2 sqrt(5)) sin(n Pi)/2))))/(5 (-1 + sqrt(5))^(3/2)).
O.g.f.: x^3/((-1+x)*(-1+x^2+x^4)). - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Dec 05 2007
|
|
|
EXAMPLE
| a(9) = 7 because the palindromic rows, using 0's for white squares and 1's for black, are: 000000000, 100000001, 110000011, 111000111, 000010000, 000111000, 100010001
|
|
|
MATHEMATICA
| Join[{a=0, b=0, c=1, d=1}, Table[e=a+c+1; a=b; b=c; c=d; d=e, {n, 100}]] (*From Vladimir Joseph Stephan Orlovsky, Feb 26 2011*)
|
|
|
CROSSREFS
| Cf. A000071, A130578.
Sequence in context: A064410 A062896 A025065 * A089075 A011142 A060029
Adjacent sequences: A131521 A131522 A131523 * A131525 A131526 A131527
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Marc Brodie (mbrodie(AT)wju.edu), Aug 24 2007
|
|
|
EXTENSIONS
| More terms from Robert G. Wilson v (rgwv(AT)rgwv.com), Aug 28 2007
|
| |
|
|