OFFSET
1,2
COMMENTS
Illustrated with other convex polyabolos in A245676.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1000
Andrew Howroyd, Convex Quadrilaterals formed from Polyabolos
EXAMPLE
For n=2, there is a square and a parallelogram.
PROG
(PARI) \\ here b is A100073
b(n) = if(n%2, floor(numdiv(n)/2), if(n%4, 0, floor(numdiv(n/4)/2)));
d(n) = my(t); sum(k=1, floor(sqrt((n-1)/2)), issquare(n+2*k^2, &t) && t>2*k);
a(n) = 2*b(n) + d(n) + if(n%2, 0, 2*numdiv(n/2) + b(n/2)) + if(n%4, 0, ceil(numdiv(n/4)/2)); \\ Andrew Howroyd, Sep 16 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Douglas J. Durian, Sep 09 2017
EXTENSIONS
Terms a(33) and beyond from Andrew Howroyd, Sep 16 2017
STATUS
approved