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!)
A264826 Primitive Eisenstein triples: (a,b,c) in lexicographic order such that a^2 + b^2 - a*b - c^2 = 0, a < b < c, and gcd(a, b) = 1. 4
3, 7, 8, 5, 7, 8, 5, 19, 21, 7, 13, 15, 7, 37, 40, 8, 13, 15, 9, 61, 65, 11, 31, 35, 11, 91, 96, 13, 43, 48, 13, 127, 133, 15, 169, 176, 16, 19, 21, 16, 49, 55, 17, 73, 80, 17, 217, 225, 19, 91, 99, 19, 271, 280, 21, 331, 341, 23, 133, 143, 23, 397, 408 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The sides of a primitive 60-degree integer triangle.
LINKS
Eric Weisstein's World of Mathematics, Pythagorean Triple
PROG
(PARI)
pt60(a) = {
my(L=List(), n=-3*a^2, f, g, b, c);
fordiv(n, f,
g=n\f;
if(f>g && (g+f)%2==0 && (f-g)%4==0,
b=(f-g)\4; c=((f+g)\2+a)\2;
if(c>0 && a<b && gcd(a, c)==1, listput(L, [a, b, c]))
)
);
Vec(L)
}
concat(concat(vector(30, a, pt60(a))))
CROSSREFS
Sequence in context: A309419 A064540 A303276 * A335893 A199712 A173257
KEYWORD
nonn,tabf
AUTHOR
Colin Barker, Nov 26 2015
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 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)