First off… Scan means hitting the entire index. Seek means going straight to the index record.
These tell us how the engine will run the operation (hash is probably okay, but it might take a lot of work to build the hash… loop is fine for smaller records… and so on)
Index compression is almost always a good practice to use when creating TSQL indexes.
CREATE NONCLUSTERED INDEX [idx_Example_ColumnName]ON [schema].[TableName] (ColumnName)WITH (ONLINE = ON, DATA_COMPRESSION = PAGE)