Ребят помогите решить задачу
не пойму как выстроить правильно циклы
const n=10;
var a:array[1..n] of real;
i,count:integer;
t:real;
begin
count:=3;
a[1]:=1; a[2]:=4; a[3]:=1;
for i:=4 to n do begin
a[i]:=a[i-3]+a[i-2]*sqrt(i*ln(abs(a[i-2])));
if a[i]-trunc(a[i])<0.5 then
inc(count);
end;
for i:=1 to n do
write (a[i]:0:3,' ');
writeln;
writeln ('count of numbers = ',count);
readln;
end.