This is about the shortest regex I could think of to do it:
(?i)([b-z&&[^eiou]])\1\1+
This uses a regex character class subtraction to exclude vowels.
I didn't have to mention "a" because I started the range from "b".
Using (?i)
makes the regex case insensitive.
See a live demo.