OFFSET
1,1
COMMENTS
Primes p such that floor(p*sqrt(3*(p^2-4))/4) is prime.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3) = 97 is a term because 97 is prime, the area of a triangle with sides 96, 97 and 98 is 4073.35..., and 4073 is prime.
MAPLE
filter:= p -> isprime(floor(p/4*sqrt(3*(p^2-4)))):
select(filter, [seq(ithprime(i), i=1..10000)]);
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Mar 22 2022
STATUS
approved