OFFSET
1,1
COMMENTS
Equivalently: perimeters of primitive integer-sided triangles such that b = (a+c)/2 with a < c.
As perimeter = 3 * middle side, these perimeters p are all multiples of 3 and each term p appears consecutively A023022(p/3) = phi(p/3)/2 times for p >= 9.
Remark, when the middle side is prime, then the number of primitive triangles with a perimeter p = 3*b equals phi(p/3)/2 = (b-1)/2 = (p-3)/6 and in this case, all the triangles are primitive (see A336754).
For the corresponding primitive triples, miscellaneous properties, and references, see A336750.
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10000
EXAMPLE
Perimeter = 9 only for the smallest triangle (2, 3, 4).
Perimeter = 12 only for the Pythagorean triple (3, 4, 5).
Perimeter = 15 for the two triples (3, 5, 7) and (4, 5, 6).
There only exists one primitive triangle with perimeter = 18 whose triple is (5, 6, 7), because (4, 6, 8) is not a primitive triple.
MAPLE
for b from 3 to 21 do
for a from b-floor((b-1)/2) to b -1 do
c := 2*b - a;
if gcd(a, b)=1 and gcd(b, c)=1 then print(a+b+c); end if;
end do;
end do;
MATHEMATICA
Flatten[Array[ConstantArray[3*#, EulerPhi[#]/2] &, 20, 3]] (* Paolo Xausa, Feb 29 2024 *)
PROG
(PARI) lista(nn) = {my(list=List()); for (b = 3, nn, for (a = b-floor((b-1)/2), b-1, my(c = 2*b - a); if (gcd([a, b, c]) == 1, listput(list, a+b+c); ); ); ); Vec(list); } \\ Michel Marcus, Sep 16 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Bernard Schott, Sep 16 2020
STATUS
approved