Do it right: 1NF stipulates no repeating values. Each element in your proposed 7560-element array belongs in its own row.
By putting each element in its own row, you give the RDBMS a chance to do things it can't do otherwise, e.g.: compute statistics on the set, verify each element adheres to domain rules, compute differences between two sets, count/select sets sharing some characteristics.
i will end up with millions of rows (perhaps more than 50 million). I am not sure if the database can handle that without performance problems.
That's not particularly many, and you won't need to deal with all 50 million most of the time. Calculate for yourself how many accesses are needed to search a binary tree to find one record in a billion. The answer may surprise you.