login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A292146 Number of different convex quadrilaterals that can be formed from n congruent isosceles right triangles. Reflections are not counted as different. 2
0, 2, 2, 5, 2, 5, 3, 9, 2, 5, 2, 11, 2, 6, 4, 13, 3, 7, 2, 11, 4, 5, 3, 19, 2, 5, 4, 12, 2, 10, 3, 17, 4, 6, 4, 16, 2, 5, 4, 19, 3, 10, 2, 11, 6, 6, 3, 27, 3, 7, 4, 11, 2, 10, 4, 20, 4, 5, 2, 22, 2, 6, 7, 21, 4, 10, 2, 12, 4, 10, 3, 28, 3, 5, 6, 11, 4, 10 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Illustrated with other convex polyabolos in A245676.
LINKS
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
Strictly less than A245676.
Sequence in context: A068066 A171889 A171868 * A334685 A340694 A101910
KEYWORD
nonn
AUTHOR
Douglas J. Durian, Sep 09 2017
EXTENSIONS
Terms a(33) and beyond from Andrew Howroyd, Sep 16 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 15:18 EDT 2024. Contains 371960 sequences. (Running on oeis4.)