Additional SQL Server features and topics not covered by specific categories
It could very well be that the chosen column for the clustered index is correct and valid. It all depends on how the table is queried - for example, if the majority of the queries use that column in the where clause to identify the row to be returned - or that column is used in a range for the majority of queries. A good example is a datetime column as the clustered index - when most queries use a date range (e.g. last months data, last weeks, yesterdays, etc.).
Unless you are seeing performance issues on most of the queries accessing this table - I wouldn't be looking to change it, especially if the only reason is because you want the PK to also be the clustered index. It doesn't have to be and often that is not a good practice.