\documentclass[11pt]{article}
\usepackage{amsmath}
\usepackage{pstricks-add}
\usepackage{filecontents}
\begin{filecontents}{data.dat}
0 1.0
0 1.0
1 1.61803398875
1 0.61803398875
2 2.41421356237
2 0.414213562373
3 3.30277563773
3 0.302775637732
4 4.2360679775
4 0.2360679775
5 5.19258240357
5 0.192582403567
6 6.16227766017
6 0.162277660168
7 7.14005494464
7 0.14005494464
8 8.12310562562
8 0.123105625618
9 9.10977222865
9 0.109772228646
10 10.0990195136
10 0.0990195135928
11 11.0901699437
11 0.0901699437495
12 12.0827625303
12 0.0827625302982
13 13.076473219
13 0.076473218983
14 14.0710678119
14 0.0710678118655
15 15.0663729752
15 0.0663729752108
16 16.0622577483
16 0.0622577482985
17 17.0586213843
17 0.0586213843118
18 18.0553851381
18 0.0553851381374
19 19.0524865873
19 0.0524865872714
20 20.0498756211
20 0.0498756211209
21 21.0475115549
21 0.0475115548645
22 22.0453610172
22 0.0453610171873
23 23.0433963806
23 0.0433963806152
24 24.0415945788
24 0.0415945787923
25 25.039936204
25 0.0399362039845
26 26.0384048104
26 0.0384048104053
27 27.0369863707
27 0.0369863706809
28 28.0356688476
28 0.0356688476182
29 29.0344418537
29 0.0344418537486
30 30.0332963784
30 0.0332963783729
31 31.032224567
31 0.0322245670091
32 32.0312195419
32 0.0312195418814
33 33.0302752548
33 0.0302752548165
34 34.0293863659
34 0.0293863659264
35 35.028548143
35 0.0285481429581
36 36.0277563773
36 0.0277563773199
37 37.0270073136
37 0.0270073136489
38 38.0262975904
38 0.0262975904404
39 39.0256241898
39 0.0256241897666
40 40.0249843945
40 0.0249843945008
41 41.0243757518
41 0.0243757517738
42 42.0237960416
42 0.0237960416286
43 43.02324325
43 0.0232432500309
44 44.0227155455
44 0.0227155455452
45 45.0222112591
45 0.0222112591104
46 46.0217288664
46 0.0217288664427
47 47.0212669727
47 0.0212669726782
48 48.0208242989
48 0.0208242989286
49 49.0203996705
49 0.0203996704785
\end{filecontents}
\pagestyle{empty}
\begin{document}
\setcounter{figure}{4}
\readdata{\data}{data.dat}
\pstScalePoints(1,1){}{log}
\begin{figure}[h]
\centering
\psset{ury=0.5cm,lly=-0.5cm,algebraic,plotstyle=dots}% отступы от графика,
%алгебраический способ ввода формул, стиль графика
\begin{psgraph}[comma,arrows=->,%
ylogBase=10,%
logLines=y,
Dx=5,
Dy=1,%
ysubticks=5,
Oy=-2]%
(0,-2)(50,2.1){.8\textwidth}{10cm}
\listplot[linecolor=blue,linewidth=2pt,
showpoints=true,dotstyle=o]{\data}
\uput[270](10,0.5){$\dfrac{\sqrt{m^2+4}\pm m}{2}$}
\resetOptions
\end{psgraph}
\caption{plot with labels}\label{plt:data}
\end{figure}
\end{document}