OFFSET
1,4
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
H. Hadwiger and P. Mani, On polyhedra with extremal Euler characteristic, J. Combin. Theory, A 17 (1974), 345-349.
FORMULA
Numbers suggest that for n>3, a(n) = C(n, [n/2])-1 if (n mod 4)=0 or 1 and C(n, [n/2]-1)-1 otherwise. - Ralf Stephan, Jun 07 2005
PROG
(PARI) a(n)=if(n<3, (n==0||n==1), if(n<4, 2, -1+if(n%4==0||n%4==1, binomial(n, n\2), binomial(n, n\2-1)))) \\ Ralf Stephan, Jun 07 2005
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved