OFFSET
1,1
COMMENTS
The number 3 is the only value where the area is between twin primes with 3 as one of the twins.
EXAMPLE
An equilateral triangle of side 3 has an area A = (sqrt(3)/4) * 3^2 = 3.89711, which is between 3 and 5, which are twin primes; so 3 is a term.
An equilateral triangle of side 17 has an area A = (sqrt(3)/4) * 17^2 = 125.14 which is between 125 and 127. These are not twin primes; so 17 is not a term.
PROG
(PARI) isok(k) = my(A = floor(k^2*sqrt(3)/4)); if (! (A%2), A--); isprime(A) && isprime(A+2); \\ Michel Marcus, Dec 28 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Philip Mizzi, Dec 28 2020
STATUS
approved