login
A172240
Odd primes not in A181669.
6
3, 7, 13, 17, 19, 29, 31, 37, 41, 43, 53, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 173, 181, 191, 193, 197, 199, 211, 223, 229, 233, 239, 241, 251, 257, 263, 269, 271
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