OFFSET
1,1
COMMENTS
Except for term 5, the sequence contains all greater of twin primes
MAPLE
isA172240 := proc(n::integer)
type(n, 'odd') and isprime(n) and not isA181669(n) ; # reuse code of A181669
simplify(%) ;
end proc:
for n from 2 to 1000 do
if isA172240(n) then
printf("%d, ", n) ;
end if;
end do: # R. J. Mathar, Oct 17 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Giovanni Teofilatto, Nov 20 2010
STATUS
approved
