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!)
A264264 The length of the shortest nontrivial integral cevian of an isosceles triangle, with base of length 1 and legs of length n, that divides the base into two integral parts. 2

%I #10 Dec 10 2016 19:40:12

%S 4,9,6,9,36,11,14,81,16,19,30,15,24,225,26,19,48,31,34,441,36,39,84,

%T 35,44,69,32,49,900,51,34,87,56,59,1296,61,40,141,66,69,108,49,74,159,

%U 64,53,126,81,84,2601,86,89,2916,91,94,147,66,61,66,101,70,165

%N The length of the shortest nontrivial integral cevian of an isosceles triangle, with base of length 1 and legs of length n, that divides the base into two integral parts.

%C A cevian is a line segment which joins a vertex of a triangle with a point on the opposite side (or its extension).

%C A nontrivial cevian is one that does not coincide with a side of the triangle.

%C For all n, the longest nontrivial integral cevian has length n^2.

%H Colin Barker, <a href="/A264264/b264264.txt">Table of n, a(n) for n = 2..1000</a>

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Cevian">Cevian</a>

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Isosceles_triangle">Isosceles triangle</a>

%e a(4) = 6 because for legs of length 4 there are two cevians, of length 6 and 16, that divide the base into two integral parts.

%o (PARI)

%o ceviso(n) = {

%o my(d, L=List());

%o for(k=1, n^2,

%o if(issquare(n^2+k^2-k, &d) && d!=n,

%o listput(L, d)

%o )

%o );

%o Vec(L)

%o }

%o vector(100, n, n++; ceviso(n)[1])

%Y Cf. A264263.

%K nonn,easy

%O 2,1

%A _Colin Barker_, Nov 10 2015

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 July 1 11:07 EDT 2024. Contains 373915 sequences. (Running on oeis4.)