login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A352605
Primes p such that the floor of the area of a triangle with sides p-1, p and p+1 is prime.
1
3, 41, 97, 127, 163, 179, 239, 277, 367, 439, 443, 541, 569, 571, 577, 593, 677, 719, 809, 877, 1013, 1087, 1201, 1259, 1439, 1553, 1601, 1609, 1721, 1871, 1879, 1889, 2063, 2143, 2179, 2273, 2281, 2689, 2803, 2819, 2887, 3137, 3313, 3511, 3527, 3637, 3797, 3847, 3911, 4049, 4091, 4441, 4933
OFFSET
1,1
COMMENTS
Primes p such that floor(p*sqrt(3*(p^2-4))/4) is prime.
LINKS
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
Cf. A096378.
Sequence in context: A100765 A372222 A092168 * A360930 A229080 A289270
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Mar 22 2022
STATUS
approved