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!)
A190021 Number of acute triangles, distinct up to congruence, on an n X n grid (or geoboard). 4

%I #20 Feb 11 2024 22:53:00

%S 0,0,2,8,23,51,101,179,295,460,688,988,1382,1876,2495,3258,4191,5298,

%T 6613,8166,9973,12065,14472,17208,20341,23873,27838,32282,37238,42734,

%U 48840,55573,62973,71067,79934,89640,100172,111613,123959,137336,151842

%N Number of acute triangles, distinct up to congruence, on an n X n grid (or geoboard).

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Geoboard.html">Geoboard</a>.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/AcuteTriangle.html">Acute Triangle</a>.

%F a(n) = A028419(n) - A189979(n) - A190022(n).

%e For n = 3 the two acute triangles are:

%e *.. .*.

%e ..* *..

%e *.. ..*

%p Triangles:=proc(n) local TriangleSet, i, j, k, l, A, B, C; TriangleSet:={}: for i from 0 to n do for j from 0 to n do for k from 0 to n do for l from 0 to n do A:=i^2+j^2: B:=k^2+l^2: C:=(i-k)^2+(j-l)^2: if A^2+B^2+C^2<>2*(A*B+B*C+C*A) then TriangleSet:={op(TriangleSet), sort([sqrt(A), sqrt(B), sqrt(C)])}: fi: od: od: od: od: return(TriangleSet); end:

%p IsAcuteTriangle:=proc(T) if T[1]^2+T[2]^2>T[3]^2 and T[1]^2+T[3]^2>T[2]^2 and T[2]^2+T[3]^2>T[1]^2 then true else false fi: end:

%p a:=proc(n) local TriangleSet,AcuteTriangleSet,i; TriangleSet:=Triangles(n): AcuteTriangleSet:={}: for i from 1 to nops(TriangleSet) do if IsAcuteTriangle(TriangleSet[i]) then AcuteTriangleSet:={op(AcuteTriangleSet),TriangleSet[i]} fi: od: return(nops(AcuteTriangleSet)); end:

%Y Cf. A028419, A189979, A190022.

%K nonn

%O 1,3

%A _Martin Renner_, May 04 2011

%E a(21)-a(40) from _Martin Renner_, May 08 2011

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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)