Question: seq(ifactor) - to make a list of complete integer factorizations

I try to find all the complete integer factorizations of 10!+3 up to 50!+3. I can use 

ifactor (10!+3); ifactor (11!+3); ifactor (12!+3);

and this works like a charm, but takes a lot of time to type. I think I can use seq to get the answers I'm looking for, but when I try

seq(ifactor(n!+3),n=10...50);

Maple doesn't do anything. Not even an 'error'. I can't think of what I'm doing wrong. Any ideas?

Please Wait...