OFFSET
0,2
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
R. W. Robinson, Counting arrangements of bishops, pp. 198-214 of Combinatorial Mathematics IV (Adelaide 1975), Lect. Notes Math., 560 (1976). [The sequence psi(2k+1).]
R. W. Robinson, Counting arrangements of bishops, pp. 198-214 of Combinatorial Mathematics IV (Adelaide 1975), Lect. Notes Math., 560 (1976). (Annotated scanned copy)
MAPLE
For Maple program see A005635.
MATHEMATICA
B[n_] := B[n] = Which[n == 0 || n == -2, 1, OddQ[n], B[n - 1], True, 2*B[n - 2] + (n - 2)*B[n - 4]];
a[n_] := B[n + 1]*B[n + 2]/2;
Table[a[n], {n, 0, 25}] (* Jean-François Alcover, Jul 23 2022, after Maple code for A123071 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from N. J. A. Sloane, Sep 28 2006
STATUS
approved