Ok, for people who are really into helping, here's my syntax:
select a.periode,b.clusters,b.roy_aantal_sec,
--
trunc(((0.4*lag(b.ROY_aantal_sec,1) over (partition by b.clusters order by a.periode,b.clusters)+0.6*lag(b.ROY_aantal_sec,2) over (partition by b.clusters order by a.periode,b.clusters))+
(0.05*lag(b.ROY_aantal_sec,12) over (partition by b.clusters order by a.periode,b.clusters)+0.95*lag(b.ROY_aantal_sec,24 ) over (partition by b.clusters order by a.periode,b.clusters)))/2) as voorspelling
--
from periode a
left outer join tst2 b
on (a.periode=b.periode and b.lob='IC')