Without more code I can't say for sure, but it is most likely that you're never making series2 = new LinkedList<Number> or something similar.
Another problem I see is that you're starting at 1. The List interface implementations are typically 0 indexed, so you'd want
for(int num = 0; num < series.size(); num += 2)
Your best bet is to provide the entire code (what is necessary to compile and reproduce the problem) and the stack trace you're getting on the error as well.
EDIT:
It also depends on what you want for an output. Let's pretend your input in series is 0,1,2,3,4,5,6,7,8,9 and that we're dealing with only 10 numbers.
Would you want series 2 to be:
null,1,null,3,null,5,null,7,null,9
1,null,3,null,5,null,7,null,9,null
1,3,5,7,9
If it's one of the first two, then you need to modify your loop to add the extra ones, like so:
for (int num = 0; num < 120; num++) {
series2.add(num % 2 == 1 ? series.get(num) : null);
}
Or alternatively:
for(int num = 1; num < 120; num+=2) {
series2.add(null);
series2.add(series.get(num));
}
In any event attempting to add like this: series2.add(num, series.get(num)) will probably fail. According to the documentation for List.add(int,E)
Throws
IndexOutOfBoundsException - if the index is out of range (index < 0 || index > size())
So you can only use that to add to the middle of the List. If you want to add to the end, you have to use List.add(E). If you want to add to some specific index in the List that it doesn't contain yet, you need to add nulls (or something) until you get there. Obviously this is a problem if your List implementation doesn't support nulls.