login
A393485
Areas of Heron triangles whose sides all have prime power lengths.
0
6, 12, 120, 8160, 33553920
OFFSET
1,1
LINKS
Florian Luca, Fermat Primes and Heron Triangles with Prime Power Sides, Amer. Math. Monthly, 110 (No. 1, 2003), pp. 46-49.
FORMULA
For n >= 2, a(n) = 2*(A019434(n) - 2)*(A019434(n-1) - 1).
EXAMPLE
a(1) is the area of the Heron triangle with side lengths that are all prime powers: 3, 4, and 5.
a(2) is the area of the Heron triangle with side lengths that are all prime powers: 5, 5, and 8.
PROG
(Magma) lst:=[6]; for n in [2..5] do if IsPrime(2^(2^(n-1))+1) then Append(~lst, 2*(2^(2^n/2)-1)*(2^(2^n/4))); end if; end for; lst;
CROSSREFS
Sequence in context: A191662 A095388 A038515 * A335735 A051586 A228858
KEYWORD
nonn,hard,more
AUTHOR
STATUS
approved