-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpapers.html
executable file
·1286 lines (1017 loc) · 76 KB
/
papers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="style.css" rel="stylesheet" type="text/css" />
<title> Publications </title>
<script src="equalcolumns.js" type="text/javascript"></script>
<link rel="shortcut icon" href="images/favicon.gif">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20906746-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') +
'.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="container">
<div id="header">
</div>
<div id="content">
<div id="left">
<div class="menu">
<div class="menuheader"><h3>Menu</h3></div>
<div class="menucontent">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="cv.html">CV</a></li>
<li><a href="papers.html"><font color="#c4ab6b">Publications</font></a></li>
<ul>
<li><a href="papers.html#ref">Refereed journals</a></li>
<li><a href="papers.html#con">Conference proceedings</a></li>
<li><a href="papers.html#oth">Other papers</a></li>
<li><a href="papers.html#pop">Popular science</a></li>
</ul>
<li><a href="links.html">Links</a></li>
</ul>
</div>
<div class="menufooter"></div>
</div>
</div>
</div>
<div id="right_res"></div>
<div id="middle">
<div class="post">
<div class="postheader"><h1>Publications</h1></div>
<div class="postcontent">
<p><font color="#c4ab6b" size="2"><b>Citations</b></a></font></p>
<p><font color="#c4ab6b">as of 2015 February</font><br><br>
<a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?library&libname=Own+publications&libid=507dc97dc4">ADS publication list </a></i><br>
<a href="mycite.pdf">MTMT format /pdf/ (Hungarian Academy of Sciences)</a></i><br>
<a href="createreport.pdf">Publication list from ADS /pdf/ (credit: A. Pál)</p></i></p>
<p> <a name="ref"><font color="#c4ab6b" size="2"><b>Papers in refereed journals</b></a></font></p>
<p><font color="#c4ab6b">79.</font> L. Molnár, A. Pál, K. Sárneczky, <font color="#c4ab6b">R. Szabó</font>, J.Vinkó, et al.:<br>
<i><a href="https://arxiv.org/abs/1706.06056">Main-belt asteroids in the K2 Uranus field</a></i><br>
ApJS, submitted, 2017, arXiv:1706.06056</p>
<p><font color="#c4ab6b">78.</font> A. Farkas-Takács, Cs. Kiss, A. Pál, ..., <font color="#c4ab6b">R. Szabó</font>, et al.:<br>
<i><a href="https://arxiv.org/abs/1706.06837">Properties of the irregular satellite system around Uranus inferred from K2, Herschel and Spitzer observations</a></i><br>
AJ, 154, 119, 2017, arXiv:1706.06837</p>
<p><font color="#c4ab6b">77.</font> L. Molnár, A. Derekas, <font color="#c4ab6b">R. Szabó</font>, J. M. Matthews, C. Cameron, et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2017MNRAS.466.4009M">V473 Lyr, a modulated, period-doubled Cepheid, and U TrA, a double-mode Cepheid observed by MOST</a></i><br>
MNRAS, 466, 4009, 2017</p>
<p><font color="#c4ab6b">76.</font> Gy. M. Szabó, A. Pál, Cs. Kiss, L. L. Kiss, L. Molnár, ..., <font color="#c4ab6b">R. Szabó</font>:<br>
<i><a href="http://adsabs.harvard.edu/abs/2017A%26A...599A..44S">The heart of the swarm: K2 photometry and rotational characteristics of 56 Jovian Trojan asteroids</a></i><br>
A&A, 599, A44, 2017</p>
<p><font color="#c4ab6b">75.</font> E. Plachy, L. Molnár, M. I. Jurkovic, ..., L. Szabados, <font color="#c4ab6b">R. Szabó</font>:<br>
<i><a href="http://adsabs.harvard.edu/abs/2017MNRAS.465..173P">First observations of W Virginis stars with K2: detection of period doubling</a></i><br>
MNRAS, 465, 173, 2017</p>
<p><font color="#c4ab6b">74.</font> A. Derekas, E. Plachy, L. Molnár, ..., <font color="#c4ab6b">R. Szabó</font>, A. Pál:<br>
<i><a href="http://adsabs.harvard.edu/abs/2017MNRAS.464.1553D">The Kepler Cepheid V1154 Cyg revisited: light curve modulation and detection of granulation</a></i><br>
MNRAS, 464, 1553, 2017</p>
<p><font color="#c4ab6b">73.</font> <font color="#c4ab6b">R. Szabó</font>, A. Pál, K. Sárneczky, Gy. M. Szabó, L. Molnár, et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2016A%26A...596A..40S">Uninterrupted optical light curves of main-belt asteroids from the K2 Mission</a></i><br>
A&A, 596, A40, 2016</p>
<p><font color="#c4ab6b">72.</font> J. M. Benkő, <font color="#c4ab6b">R. Szabó</font>, A. Derekas, Á. Sódor <br>
<i><a href="http://adsabs.harvard.edu/abs/2016MNRAS.463.1769B">Finest light curve details, physical parameters, and period fluctuations of CoRoT RR Lyrae stars</a></i><br>
MNRAS, 463, 1769, 2016</p>
<p><font color="#c4ab6b">71.</font> A. Pál, Cs. Kiss, T. G. Müller, L. Molnár, <font color="#c4ab6b">R. Szabó</font> et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2016AJ....151..117P">Large size and slow rotation of the trans-Neptunian object (225088) 2007 OR<sub>10</sub> discovered from Herschel and K2 observations </a></i><br>
AJ, 151, 117, 2016</p>
<p><font color="#c4ab6b">70.</font> T. S. Boyajian, D. M. LaCourse, S. A. Rappaport, ..., <font color="#c4ab6b">R. Szabó</font> et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2016MNRAS.457.3988B">Planet Hunters X. KIC 8462852 - Where's the flux?</a></i><br>
MNRAS, 457, 3988, 2016</p>
<p><font color="#c4ab6b">69.</font> Cs. Kiss, A. Pál, A. I. Farkas-Takács, Gy. M. Szabó, <font color="#c4ab6b">R. Szabó</font> et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2016MNRAS.457.2908K">Nereid from space: Rotation, size and shape analysis from Kepler/K2, Herschel and Spitzer observations</a></i><br>
MNRAS, 457, 2908, 2016</p>
<p><font color="#c4ab6b">68.</font> P. De Cat, J. N. Fu, A. B. Ren, X. H. Yang, J. R. Shi, ..., <font color="#c4ab6b">R. Szabó</font> et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2015ApJS..220...19D">LAMOST observations in the Kepler field. I. Database of low-resolution spectra</a></i>
ApJS, 220, 19, 2015</p>
<p><font color="#c4ab6b">67.</font> L. Molnár, A. Pál, E. Plachy, V. Ripepi, M. I. Moretti, <font color="#c4ab6b">R. Szabó</font>, L. Kiss: <br>
<i><a href="http://adsabs.harvard.edu/abs/2015ApJ...812....2M">Pushing the limits, episode 2: K2 observations of extragalactic RR Lyrae stars in the dwarf galaxy Leo IV</a></i><br>
ApJ, 812, 2, 2015, download data from <a href="http://www.konkoly.hu/KIK/data.html">here</p>
<p><font color="#c4ab6b">66.</font> J. M. Benkő, <font color="#c4ab6b">R. Szabó</font>: <br>
<i><a href="http://adsabs.harvard.edu/abs/2015ApJ...809L..19B">The Blazhko effect and additional excited modes in RR Lyrae stars
</a></i><br>
ApJL, 809, L19, 2015 , download data from <a href="http://www.konkoly.hu/KIK/data.html">here</p>
<p><font color="#c4ab6b">65.</font> L. Molnár, <font color="#c4ab6b">R. Szabó</font>, P. Moskalik, J. M. Nemec, E. Guggenberger et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2015MNRAS.452.4283M">An RR Lyrae family portrait: 33 stars observed in Pisces with K2-E2
</a></i><br>
MNRAS, 452, 4283, 2015, download data from <a href="http://www.konkoly.hu/KIK/data.html">here</p>
<p><font color="#c4ab6b">64.</font> A. Pál, <font color="#c4ab6b">R. Szabó</font>, Gy. M. Szabó, L. L. Kiss, et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2015ApJ...804L..45P"> Pushing the Limits: K2 Observations of the Trans-Neptunian Objects 2002 GV31 and (278361) 2007 JJ43
</a></i><br>
ApJL, 804, L45, 2015</p>
<p><font color="#c4ab6b">63.</font> <font color="#c4ab6b">R. Szabó</font>, K. Sárneczky, Gy. M. Szabó, A. Pál, Cs. P. Kiss et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2015AJ....149..112S"> Main-Belt Asteroids in the K2 Engineering Field of View
</a></i><br>
AJ, 149, 112, 2015</p>
<p><font color="#c4ab6b">62.</font> P. Moskalik, R. Smolec, K. Kolenberg, L. Molnár, D. W. Kurtz, <font color="#c4ab6b">R. Szabó</font> et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2015MNRAS.447.2348M">Kepler photometry of RRc stars: peculiar double-mode pulsations and period doubling
</a></i><br>
MNRAS, 447, 2348, 2015</p>
<p><font color="#c4ab6b">61.</font> N. R. Evans, <font color="#c4ab6b">R. Szabó</font>, A. Derekas, L. Szabados, C. Cameron, et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2015MNRAS.446.4008E">Observations of Cepheids with the MOST satellite: Contrast between Pulsation Modes
</a></i><br>
MNRAS, 446, 4008, 2015</p>
<p><font color="#c4ab6b">60.</font> E. Plachy, J. M. Benkő, Z. Kolláth, L. Molnár, <font color="#c4ab6b">R. Szabó</font>: <br>
<i><a href="http://adsabs.harvard.edu/abs/2014MNRAS.445.2810P">Nonlinear dynamical analysis of the Blazhko effect with the Kepler space telescope: the case of V783 Cyg
</a></i><br>
MNRAS, 445, 2810, 2014</p>
<p><font color="#c4ab6b">59.</font> <font color="#c4ab6b">R. Szabó</font>, J. M. Benkő, M. Paparó, E. Chapellier, E. Poretti et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2014A%26A...570A.100S">Revisiting CoRoT RR Lyrae stars: detection of period doubling and temporal variation of additional frequencies
</a></i><br>
A&A, 570, A100, 2014</p>
<p><font color="#c4ab6b">58.</font> T. Borkovits, A. Derekas, J. Fuller, ...., <font color="#c4ab6b">R. Szabó</font> et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2014MNRAS.443.3068B">HD 183648: a Kepler eclipsing binary with anomalous ellipsoidal variations and a pulsating component
</a></i><br>
MNRAS, 443, 3068, 2014</p>
<p><font color="#c4ab6b">57.</font> J. M. Benkő, E. Plachy, <font color="#c4ab6b">R. Szabó</font>, L. Molnár, Z. Kolláth: <br>
<i><a href="http://adsabs.harvard.edu/abs/2014ApJS..213...31B">Long Time-Scale Behaviour of the Blazhko Effect from rectified Kepler Data
</a></i><br>
ApJS, 213, 31, 2014, download data from <a href="http://www.konkoly.hu/KIK/data.html">here</p>
<p><font color="#c4ab6b">56.</font> K. Vida, K. Oláh, <font color="#c4ab6b">R. Szabó</font>: <br>
<i><a href="http://adsabs.harvard.edu/abs/2014MNRAS.441.2744V">Looking for activity cycles in late-type Kepler stars using time-frequency analysis
</a></i><br>
MNRAS, 441, 2174, 2014</p>
<p><font color="#c4ab6b">55.</font> J. F. Le Borgne, E. Poretti, A. Klotz, ..., <font color="#c4ab6b">R. Szabó</font> et al: <br>
<i><a href="http://adsabs.harvard.edu/abs/2014MNRAS.441.1435L">The historical vanishing of the Blazhko effect of RR Lyr from GEOS and Kepler surveys
</a></i><br>
MNRAS, 441, 1435, 2014</p>
<p><font color="#c4ab6b">54.</font> H. Rauer, C. Catala, C. Aerts, ..., <font color="#c4ab6b">R. Szabó</font> et al: <br>
<i><a href="http://adsabs.harvard.edu/abs/2014ExA....38..249R">The PLATO 2.0 Mission
</a></i><br>
Experimental Astronomy, 38, 249, 2014</p>
<p><font color="#c4ab6b">53.</font> <font color="#c4ab6b">R. Szabó</font>, Ž. Ivezić, L. L. Kiss, Z. Kolláth,
L. Jones, B. Sesar et al.: <br>
<i><a href="http://iopscience.iop.org/0004-637X/780/1/92/">High-precision 2MASS JHKs light curves and other data for RR Lyrae star SDSS J015450+001501 :
strong constraints for non-linear pulsation models</a></i><br>
ApJ, 780, 92, 2014<br>
download <a href="SDSSJ015450+001501_LINEARlightcurve.dat">LINEAR data, </a>  
<a href="SDSSJ015450+001501_CSSlightcurve.dat">CSS data, </a>  
<a href="SDSSJ015450+001501_SDSSlightcurves.dat">SDSS data, </a>  
<a href="SDSSJ015450+001501_2MASSlightcurves.dat">2MASS data</a>  
<a href="SDSSJ015450+001501_WISElightcurves.dat">WISE data</a>  
<a href="SED2.dat">SED data</a>  
<br>
</p>
<p><font color="#c4ab6b">52.</font> E. Bányai, L. L. Kiss, T. R. Bedding, ..., <font color="#c4ab6b">R. Szabó</font> et al: <br>
<i><a href="http://adsabs.harvard.edu/abs/2013MNRAS.436.1576B">Variability of M giant stars based on Kepler photometry: general characteristics
</a></i><br>
MNRAS, 436, 1576, 2013</p>
<p><font color="#c4ab6b">51.</font> S. J. Murphy, A. Pigulski, D.W. Kurtz, ..., <font color="#c4ab6b">R. Szabó</font> et al: <br>
<i><a href="http://adsabs.harvard.edu/abs/2013MNRAS.432.2284M">An asteroseismic case-study of KIC 11754974: a high-amplitude SX Phe star in the Kepler field
</a></i><br>
MNRAS, 432, 2284, 2013</p>
<p><font color="#c4ab6b">50.</font> <font color="#c4ab6b">R. Szabó</font>, Gy. M. Szabó, G. Dálya, A. E. Simon, G. Hodosán, L. L. Kiss: <br>
<i><a href="http://adsabs.harvard.edu/abs/2013A%26A...553A..17S">Multiple planets or exomoons in Kepler hot Jupiter systems with transit timing variations?</a></i><br>
A&A, 553, A17, 2013</p>
<p><font color="#c4ab6b">49.</font> T. Borkovits, A. Derekas, L. Kiss, ..., <font color="#c4ab6b">R. Szabó</font>: <br>
<i><a href="http://adsabs.harvard.edu/abs/2013MNRAS.428.1656B">Dynamical masses, absolute radii and 3D
orbits of the triply eclipsing star HD 181068 from Kepler photometry</a></i><br>
MNRAS, 428, 1656, 2013</p>
<p><font color="#c4ab6b">48.</font> L. Molnár, Z. Kolláth, <font color="#c4ab6b">R. Szabó</font>,
S. Bryson, K. Kolenberg et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2012ApJ...757L..13M">Nonlinear asteroseismology of RR Lyrae</a></i><br>
ApJL, 757, L13, 2012</p>
<p><font color="#c4ab6b">47.</font> A. Derekas, Gy. M. Szabó, L. Berdnikov, <font color="#c4ab6b">
R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2012MNRAS.425.1312D">Period and light curve fluctuations of the Kepler Cepheid V1154 Cyg</a></i><br>
MNRAS, 425, 1312, 2012</p>
<p><font color="#c4ab6b">46.</font> L. A. Balona, M. Breger, G. Catanzaro, ..., <font color="#c4ab6b">
R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2012MNRAS.424.1187B">Unusual high frequencies in the Kepler delta Scuti star KIC 4840675</a></i><br>
MNRAS, 424, 1187, 2012</p>
<p><font color="#c4ab6b">45.</font> E. Guggenberger, K. Kolenberg, J. Nemec, ..., <font color="#c4ab6b">
R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2012MNRAS.424..649G">The complex case of V445 Lyr: two Blazhko modulations,
a non-radial mode, possible triple mode RR Lyrae pulsation, and more</a></i><br>
MNRAS, 424, 649, 2012</p>
<p><font color="#c4ab6b">44.</font> L. Molnár, Z. Kolláth, <font color="#c4ab6b">R. Szabó</font>:<br>
<i><a href="http://adsabs.harvard.edu/abs/2012MNRAS.424...31M">Can turbulent convective variations drive the Blazhko
cycle? Dynamical investigation of the Stothers idea</a></i><br>
MNRAS, 424, 31, 2012</p>
<p><font color="#c4ab6b">43.</font> A. Miglio, K. Brogaard, D. Stello, ..., <font color="#c4ab6b">
R. Szabó</font> et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2012MNRAS.419.2077M">Asteroseismology of old open clusters with Kepler: direct estimate of the integrated RGB
mass loss in NGC 6791 and NGC 6819</a></i><br>
MNRAS, 419, 2077, 2012</p>
<p><font color="#c4ab6b">42.</font> K. Uytterhoeven, A. Moya, A. Grigahcène, ..., <font color="#c4ab6b">
R. Szabó</font> et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2011A%26A...534A.125U">The Kepler characterization of the variability amongst A- and F-type stars I. General analysis
</a></i><br>
A&A, 534, A125, 2011</p>
<p><font color="#c4ab6b">41.</font> J. M. Nemec, R. Smolec, J. M. Benkő, ..., <font color="#c4ab6b">
R. Szabó</font> et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2011MNRAS.417.1022N">Fourier analysis of non-Blazhko ab-type RR Lyr stars observed with the Kepler space telescope
</a></i><br>
MNRAS, 417, 1022, 2011</p>
<p><font color="#c4ab6b">40.</font> J. M. Benkő, <font color="#c4ab6b"> R. Szabó</font>, M. Paparó: <br>
<i><a href="http://adsabs.harvard.edu/abs/2011MNRAS.417..974B">Blazhko RR Lyrae light curves as modulated signals</a></i><br>
MNRAS, 417, 974, 2011</p>
<p><font color="#c4ab6b">39.</font> D. Stello, S. Meibom, R. L. Gilliland, ..., <font color="#c4ab6b">
R. Szabó</font>, et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2011ApJ...739...13S">An Asteroseismic Membership Study of the Red Giants in Three Open Clusters Observed by
Kepler: NGC 6791, NGC 6819, and NGC 6811</a></i><br>
ApJL, 739, L13, 2011</p>
<p><font color="#c4ab6b">38.</font> D. Stello, D. Huber, T. Kallinger, ..., <font color="#c4ab6b">
R. Szabó </font> et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2011ApJ...737L..10S">Amplitudes of solar-like oscillations: constraints from red giants in open clusters
observed by Kepler</a></i><br>
ApJL, 737, L10, 2011</p>
<p><font color="#c4ab6b">37.</font> Gy. M. Szabó <font color="#c4ab6b"> R. Szabó</font>, J. M. Benkő et al.: <br>
<i><a href="http://adsabs.harvard.edu/abs/2011ApJ...736L...4S">Asymmetric transit curves as indication of orbital obliquity: clues from the brown dwarf companion in KOI-13</a></i><br>
ApJL, 736, L4, 2011</p>
<p><font color="#c4ab6b">36.</font> M. Paparó, M. Chadid, E. Chapellier, J. M. Benkő,
<font color="#c4ab6b">R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2011A%26A...531A.135P">Periodicity search as a tool to disentangle the contaminated color light curve of CoRoT
target, C0102781750</a></i><br>
A&A, 531, A135, 2011<br>
</p>
<p><font color="#c4ab6b">35.</font> E. Guggenberger, K. Kolenberg, E. Poretti, E. Chapellier,
<font color="#c4ab6b">R. Szabó</font>, J. M. Benkő, M. Paparó:<br>
<i><a href="http://adsabs.harvard.edu/abs/2011MNRAS.415.1577G">The CoRoT star 105288363:
strong cycle to cycle changes of the Blazhko modulation</a></i><br>
MNRAS, 415, 1577, 2011<br>
</p>
<p><font color="#c4ab6b">34.</font> Z. Kolláth, L. Molnár, <font
color="#c4ab6b">R. Szabó</font>:<br>
<i><a href="http://adsabs.harvard.edu/abs/2011MNRAS.414.1111K">Period doubling bifurcation and
high-order resonances in RR Lyrae hydrodynamical models</a></i><br>
MNRAS, 414, 1111, 2011</p>
<p><font color="#c4ab6b">33.</font> M. Breger, L. Balona, P. Lenz, ..., <font
color="#c4ab6b">R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2011MNRAS.414.1721B">Regularities in frequency
spacings of Delta Scuti stars: The Kepler star KIC 9700322</a></i><br>
MNRAS, 414, 1721, 2011</p>
<p><font color="#c4ab6b">32.</font> A. Derekas, L. L. Kiss, T. Borkovits, ...</font>,
<font color="#c4ab6b"> R. Szabó</font> et al.: <br>
<i><a href="http://www.sciencemag.org/content/332/6026/216.abstract">HD 181068: A Red Giant in a Triply-Eclipsing Compact Hierarchical Triple System</a></i><br>
Science, 332, 216, 2011</p>
<p><font color="#c4ab6b">31.</font> S. Hekker, S. Basu, D. Stello, ..., <font
color="#c4ab6b">R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/cgi-bin/nph-data_query?bibcode=2011A%26A...530A.100H&db_key=AST&link_type=ABSTRACT&high=495cfb0cfb11260">
Asteroseismic inferences on red giants in open clusters NGC 6791,
NGC 6819 and NGC 6811 using Kepler</a></i><br>
A&A, 530, A100, 2011</p>
<p><font color="#c4ab6b">30.</font> <font color="#c4ab6b">R. Szabó</font>,
L. Szabados, C.-C. Ngeow et al.:<br>
<i><a href="http://adsabs.harvard.edu/cgi-bin/nph-data_query?bibcode=2011MNRAS.413.2709S&db_key=AST&link_type=ABSTRACT&high=495cfb0cfb11260">Cepheid investigations
using the Kepler space telescope</a></i><br> MNRAS, 413, 2709, 2011<br>
download <a href="online_table1.dat">online table 1, </a>  
<a href="online_table2.dat">online table 2, </a>  
<a href="online_table3.dat">online table 3</a><br>
</p>
<p><font color="#c4ab6b">29.</font> L. A. Balona, A. Pigulski, P. De Cat, ..., <font
color="#c4ab6b">R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/cgi-bin/nph-data_query?bibcode=2011MNRAS.413.2403B&db_key=AST&link_type=ABSTRACT&high=495cfb0cfb11260">Kepler observations of variability in B-type stars</a></i><br>
MNRAS, 413, 2403, 2011</p>
<p><font color="#c4ab6b">28.</font> M. D. Reed, S. L. Harms, S. Poindexter, ..., <font
color="#c4ab6b">R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2011MNRAS.412..371R">Whole Earth Telescope Observations of the subdwarf B
star KPD 1930+2752: A rich, short period pulsator in a close binary</a></i><br>
MNRAS, 412, 371, 2011 </p>
<p><font color="#c4ab6b">27.</font> G. Catanzaro, V. Ripepi, S. Bernabei, ..., <font
color="#c4ab6b">R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/doi/10.1111/j.1365-2966.2010.17749.x">Atmospheric
parameters and pulsational properties
for a sample of delta Sct, gamma Dor, and hybrid Kepler targets</a></i><br>
MNRAS, 411, 1167, 2011</p>
<p><font color="#c4ab6b">26.</font> K. Kolenberg, S. Bryson, <font color="#c4ab6b">R.
Szabó</font>, D. W. Kurtz et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2011MNRAS.411..878K">Kepler photometry of the
prototypical Blazhko star RR Lyr: <br>An old friend seen in a new light </a></i><br>
MNRAS, 411, 878, 2011</p>
<p><font color="#c4ab6b">25.</font> Gy. M. Szabó, L.L. Kiss, J. Benkő, ..., <font
color="#c4ab6b">R. Szabó:</font><br>
<i><a href="http://adsabs.harvard.edu/abs/2010A%26A...523A..84S">HAT-P-13: a multi-site campaign
to detect the transit of the second planet in the system </a></i><br>
A&A, 523, A84, 2010</p>
<p><font color="#c4ab6b">24.</font> <font color="#c4ab6b">R. Szabó</font>, Z. Kolláth, L.
Molnár, K. Kolenberg et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2010MNRAS.409.1244S">Does Kepler unveil the mystery of
the Blazhko effect? First detection of period doubling in Kepler Blazhko RR Lyrae stars </a></i><br>
MNRAS, 409, 1244, 2010 </p>
<p><font color="#c4ab6b">23.</font> J. M. Benkő, K. Kolenberg, <font color="#c4ab6b">R.
Szabó</font>, D. W. Kurtz et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2010MNRAS.409.1585B">Flavours of variability: 29
RR Lyrae stars observed by the Kepler space telescope</a></i><br>
MNRAS, 409, 1585, 2010 </p>
<p><font color="#c4ab6b">22.</font> E. Poretti, M. Paparó, M. Deleuil, ... <font
color="#c4ab6b">R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2010A%26A...520A.108P">CoRoT light curves of RR Lyrae
stars. CoRoT 101128793: long-term changes in the Blazhko effect and excitation of additional
modes </a></i><br>
A&A, 520, A108, 2010 </p>
<p><font color="#c4ab6b">21.</font> A. Grigahcène, V. Antoci, L. Balona, G. Catanzaro, J. Daszynska-Daszkiewicz,
..., <font color="#c4ab6b">R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2010ApJ...713L.192G">Hybrid gamma Doradus - delta Scuti pulsators:
New insights into the physics of the oscillations from Kepler observations</a></i><br>
ApJL, 713, L192, 2010 </p>
<p><font color="#c4ab6b">20.</font> D. Stello, S. Basu, H. Bruntt, B. Mosser, I. R. Stevens, T. M. Brown, ...,
<font color="#c4ab6b">R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2010ApJ...713L.182S">Detection of solar-like
oscillations from Kepler photometry of the open cluster NGC 6819</a></i><br>
ApJL, 713, L182, 2010 </p>
<p><font color="#c4ab6b">19.</font> K. Kolenberg, <font color="#c4ab6b">R. Szabó</font>, D. W. Kurtz, R. L. Gilliland,
J. Christensen-Dalsgaard et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2010ApJ...713L.198K">First KEPLER Results on RR Lyrae
Stars</a></i><br>
ApJL, 713, L198, 2010 </p>
<p><font color="#c4ab6b">18.</font> R. L. Gilliland, T. M. Brown, J. Christensen-Dalsgaard, H. Kjeldsen,
C. Aerts, ..., <font color="#c4ab6b">R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2010PASP..122..131G">Kepler Asteroseismology Program:
Introduction and First Results</a></i><br>
PASP, 122, 131, 2010 </p>
<p><font color="#c4ab6b">17.</font> M. Chadid, J. M. Benk<span lang="hu">ő</span>, <font color="#c4ab6b">R. Szabó</font>,
E. Chapellier, K. Kolenberg et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2010A%26A...510A..39C">First CoRoT RR Lyrae
light curves. Complex multiplet structure and nonradial pulsation
detection in V1127 Aql </a></i><br>
A&A, 510, A39, 2010</p>
<p><font color="#c4ab6b">16.</font> J. B. Marquette, J. P. Beaulieu, J. R. Buchler,
<font color="#c4ab6b">R. Szabó</font>, P. Tisserand et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2009A%26A...495..249M">The beat Cepheids in the Magellanic Clouds: an analysis from the EROS-2 database </a></i><br>
A&A, 495, 249, 2009 </p>
<p><font color="#c4ab6b">15. </font>I. Dékány, G. Kovács, J. Jurcsik,
<font color="#c4ab6b"> R. Szabó</font>, M. Váradi et al: <br>
<i><a href="http://adsabs.harvard.edu/abs/2008MNRAS.386..521D">Pulsational and
evolutionary analysis of the double-mode RR Lyrae star BS Com</a></i><br>
MNRAS, 386, 521, 2008</p>
<p><font color="#c4ab6b">14.</font><font color="#c4ab6b"> R. Szabó</font>, J. R. Buchler & J. Bartee:<br>
<i><a href="http://adsabs.harvard.edu/abs/2007ApJ...667.1150S">The Cepheid Phase Lag Revisited</a></i><br>
ApJ, 667, 1150, 2007</p>
<p><font color="#c4ab6b">13. </font>H. Bruntt, D. Stello, J. C. Suarez, T.
Arentoft, T. R. Bedding, ...., <font color="#c4ab6b">R. Szabó</font>:<br>
<i><a href="http://adsabs.harvard.edu/abs/2007MNRAS.378.1371B">Multi-site campaign on the open
cluster M67. III. Delta Scuti pulsations in the blue stragglers</a></i><br>
MNRAS, 378, 1371, 2007</p>
<p><font color="#c4ab6b">12.</font> D. Stello,<font color="#c4ab6b"> </font>H.,
Bruntt, H. Kjeldsen, T. R. Bedding, T. Arentoft, R. L. Gilliland, ...., <font color="#c4ab6b">R. Szabó</font> et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs?bibcode=2007MNRAS.377..584S&">Multi-site
campaign on the open cluster M67. II. Solar-like oscillations in red giant stars</a></i><br>
MNRAS, 377, 584, 2007</p>
<p><font color="#c4ab6b">11. </font>J. R. Buchler & <font color="#c4ab6b"> R. Szabó</font>:<br>
<i><a href="http://adsabs.harvard.edu/abs/2007ApJ...660..723B">Beat Cepheids as probes of
stellar and galactic metallicity</a></i><br>
ApJ, 660, 723, 2007</p>
<p><font color="#c4ab6b">10. </font>D. Stello, T.
Arentoft, T. R. Bedding, M. Y. Bouzid, H. Bruntt, ...,<font color="#c4ab6b"> R. Szabó</font>:</br>
<i><a href="http://adsabs.harvard.edu/abs/2006MNRAS.373.1141S">Multi-site campaign on the open
cluster M67. I. Observations and photometric reductions</a></i><br></i>
MNRAS, 373, 114, 2006</p>
<p> <font color="#c4ab6b">9. </font>J. Vinkó, R. M. Blake, K. Sárneczky, B. Csák, G. Fűrész, ..., <font color="#c4ab6b">R. Szabó</font> et al.:<br>
<i> <a href="http://adsabs.harvard.edu/abs/2004A%26A...427..453V">Distance
of the Hypernova SN 2002ap via the Expanding Photosphere Method</a></i><br>
A&A, <b>427</b>, 453, 2004</p>
<p> <font color="#c4ab6b">8. </font><font color="#c4ab6b">R. Szabó</font>, Z. Kolláth, J. R. Buchler:<br>
<i> <a href="http://adsabs.harvard.edu/abs/2004A%26A...425..627S">
Automated Nonlinear Stellar Pulsation Calculations: Applications to RR Lyrae Stars.
The Slope of the Fundamental Blue Edge and the First RRd Model Survey</a></i><br>
A&A, 425, 627, 2004</p>
<p> <font color="#c4ab6b">7.</font> J. Jurcsik, J.M. Benk<span lang="hu">ő</span>, G. Bakos, B. Szeidl,<font color="#c4ab6b"> R. Szabó</font>:<br>
<a href="http://adsabs.harvard.edu/abs/2003ApJ...597L..49J">
<i>Detection of the evolutionary stages of variables in M3</i></a><br>
ApJ, 597, L49-52, 2003</p>
<p> <font color="#c4ab6b">6. </font> J. Vinkó, I. B. Bíró, B. Csák, Sz. Csizmadia, ..., <font color="#c4ab6b">R. Szabó</font> et al: <br>
<a href="http://adsabs.harvard.edu/abs/2003A%26A...397..115V">
The Type la Supernova 2001V in NGC 3987</i></a><br>
A&A, 397, 115, 2003</p>
<p> <font color="#c4ab6b">5. </font> Z. Kolláth, J. R. Buchler,<font color="#c4ab6b"> R. Szabó</font> & Z.Csubry: <br>
<a href="http://adsabs.harvard.edu/abs/2002A%26A...385..932K">
<i>Nonlinear Beat Cepheid and RR Lyrae Models</i></a><br>
A&A, 385, 932, 2002</p>
<p><font color="#c4ab6b">4.</font> M. Breger, R. Garrido, G. Handler, M.
Wood, R. R. Shobbrook, ..., <font color="#c4ab6b">R. Szabó</font> et al.: <br>
<a href="http://adsabs.harvard.edu/abs/2002MNRAS.329..531B">
<i>29 frequencies for the delta Scuti variable BI CMi: Results of the 1997-2000 multisite campaigns</i></a><br>
MNRAS, 329, 531, 2002</p>
<p> <font color="#c4ab6b">3.</font> S. Frandsen, A. Pigulski, J. Nuspl, M. Breger, J. A. Belmonte, ..., <font color="#c4ab6b">R. Szabó</font> et al.: <br>
<a href="http://adsabs.harvard.edu/abs/2001A%26A...376..175F">
<i>Delta Scuti stars in Praesepe I. The STACC 1998 campaign -the photometry</i></a><br>
A&A, 376, 175, 2001</p>
<p><font color="#c4ab6b">2.</font> J. Vinkó L. L. Kiss, B. Csák, G. F<span lang="hu">ű</span>rész,<font color="#c4ab6b"> R. Szabó</font>, et al.: <br>
<a href="http://adsabs.harvard.edu/abs/2001AJ....121.3127V">
<i>The Peculiar Type Ia Supernova 1999by: Spectroscopy at Early Epochs</i></a><br>
AJ, 121, 3127, 2001</p>
<p><font color="#c4ab6b">1. </font> I. Tóth & <font color="#c4ab6b">R. Szabó</font>:<br>
<a href="http://adsabs.harvard.edu/abs/2000A%26A...361...63T">
<i>The type Ia SN 1999by in NGC 2841: near-maximum BV(RI)c photometry and the multicolor light-curve shape (MLCS) method</i></a><br>
A&A, 361, 63, 2000</p>
<p><a name="con"> <font color="#c4ab6b" size="2"><b>Conference proceedings:</b></font></a></p>
<p><font color="#c4ab6b">66.</font> </font> <font color="#c4ab6b"> R. Szabó,</font> K. Kolenberg, L. Molnár, E. Plachy, P. Klagyivik et al.:<br>
<a href="https://www.epj-conferences.org/articles/epjconf/pdf/2017/29/epjconf_azores2017_04004.pdf">The K2 RR Lyrae survey </a><br>
EpJ WoC 160, 04004, 2017</p>
<p><font color="#c4ab6b">65.</font> </font> <font color="#c4ab6b"></font> E. Plachy, P. Klagyivik, L. Molnár,<font> R. Szabó,</font>:<br>
<a href="https://www.epj-conferences.org/articles/epjconf/pdf/2017/29/epjconf_azores2017_04010.pdf">A modulated RRd star observed by K2</a><br>
EpJ WoC 160, 04010, 2017</p>
<p><font color="#c4ab6b">64.</font> </font> <font color="#c4ab6b"></font> E. Plachy, P. Klagyivik, L. Molnár, Á. Sódor,<font> R. Szabó,</font>:<br>
<a href="https://www.epj-conferences.org/articles/epjconf/pdf/2017/29/epjconf_azores2017_04009.pdf">Extended Aperture Photometry of K2 RR Lyrae stars </a><br>
EpJ WoC 160, 04009, 2017</p>
<p><font color="#c4ab6b">63.</font> </font> <font color="#c4ab6b"> </font> L. Molnár, E. Plachy, P. Klagyivik,<font> R. Szabó,</font> et al.:<br>
<a href="https://www.epj-conferences.org/articles/epjconf/pdf/2017/29/epjconf_azores2017_04008.pdf">The additional-mode garden of RR Lyrae stars </a><br>
EpJ WoC 160, 04008, 2017</p>
<p><font color="#c4ab6b">62.</font> </font> <font color="#c4ab6b"> R. Szabó</font>:<br>
<a href="https://www.epj-conferences.org/articles/epjconf/abs/2017/21/epjconf_puls2017_02006/epjconf_puls2017_02006.html">Progress report on the K2 RR Lyrae survey </a><br>
EpJ WoC 152, 02006, 2017</p>
<p><font color="#c4ab6b">61.</font> </font>L. Molnár, A. Derekas, <font color="#c4ab6b"> R. Szabó</font>, L. Szabados, J. M. Matthews et al.:<br>
<a href="https://arxiv.org/pdf/1705.01922.pdf">The MOST view of Cepheids</a><br>
Proceedings of the 2nd BRITE-Constellation Science Conference (to appear in the Polish Astronomical Society Proceedings) 2017, arXiv:1705.01922</p>
<p><font color="#c4ab6b">60.</font> </font>O. Hanyecz, <font color="#c4ab6b"> R. Szabó</font>:<br>
<a href="http://www.konkoly.hu/Mitteilungen/Mitt105/105.pdf">Population synthesis of RR Lyrae stars in the original Kepler and K2 fields of view</a><br>
Proceedings of the RRL2015 meeting, Visegrád 19-22, October 2015.
Comm. from the Konkoly Obs., 105, 201, 2016</p>
<p><font color="#c4ab6b">59.</font> </font>J. Benkő, <font color="#c4ab6b"> R. Szabó</font>:<br>
<a href="http://www.konkoly.hu/Mitteilungen/Mitt105/105.pdf">Describing Blazhko light curves with almost periodic functions</a><br>
Proceedings of the RRL2015 meeting, Visegrád 19-22, October 2015.
Comm. from the Konkoly Obs., 105, 197, 2016</p>
<p><font color="#c4ab6b">58.</font> </font>E. Bányai, E. Plachy, L. Molnár, L. Dobos, <font color="#c4ab6b"> R. Szabó</font>:<br>
<a href="http://www.konkoly.hu/Mitteilungen/Mitt105/105.pdf">Constraining RRc candidates using SDSS colours</a><br>
Proceedings of the RRL2015 meeting, Visegrád 19-22, October 2015.
Comm. from the Konkoly Obs., 105, 195, 2016</p>
<p><font color="#c4ab6b">57.</font> </font>E. Plachy, L. Molnár, <font color="#c4ab6b"> R. Szabó</font>, K. Kolenberg, E. Bányai:<br>
<a href="http://www.konkoly.hu/Mitteilungen/Mitt105/105.pdf">Target selection of classical pulsating variables for
space-based photometry</a><br>
Proceedings of the RRL2015 meeting, Visegrád 19-22, October 2015.
Comm. from the Konkoly Obs., 105, 19, 2016</p>
<p><font color="#c4ab6b">56.</font> </font>L. Szabados, N. R. Evans, <font color="#c4ab6b"> R. Szabó</font>, A. Derekas, C. Cameron et al.:<br>
<a href="http://www.epj-conferences.org/articles/epjconf/pdf/2015/20/epjconf_sphr2014_06062.pdf">Tipsy pulsation of classical Cepheids - lessons from space photometry</a><br>
Proceedings of the CoRoT Symposium 3 / Kepler KASC-7 joint meeting, Toulouse, 6-11, July 2014.
EPJ Web of Conferences, 101, 06062, 2015</p>
<p><font color="#c4ab6b">55.</font> </font>L. Molnár, E. Plachy, <font color="#c4ab6b"> R. Szabó</font>, J. M. Benkő:<br>
<a href="http://www.epj-conferences.org/articles/epjconf/pdf/2015/20/epjconf_sphr2014_06047.pdf">Classical variables in the era of space photometric missions</a><br>
Proceedings of the CoRoT Symposium 3 / Kepler KASC-7 joint meeting, Toulouse, 6-11, July 2014.
EPJ Web of Conferences, 101, 06047, 2015</p>
<p><font color="#c4ab6b">54.</font> </font>E. Plachy, J. M. Benkő, Z. Kolláth, <font color="#c4ab6b"> R. Szabó</font>, L. Molnár:<br>
<a href="http://www.epj-conferences.org/articles/epjconf/pdf/2015/20/epjconf_sphr2014_06053.pdf">Dynamical investigation of modulated Kepler RR Lyrae stars</a><br>
Proceedings of the CoRoT Symposium 3 / Kepler KASC-7 joint meeting, Toulouse, 6-11, July 2014.
EPJ Web of Conferences, 101, 06053, 2015</p>
<p><font color="#c4ab6b">53.</font> </font>A. Derekas, T. Borkovits, J. Fuller, ..., <font color="#c4ab6b"> R. Szabó</font> et al.:<br>
<a href="http://www.epj-conferences.org/articles/epjconf/pdf/2015/20/epjconf_sphr2014_06021.pdf">HD183648: a Kepler eclipsing binary with anomalous ellipsoidal variations and a pulsating component</a><br>
Proceedings of the CoRoT Symposium 3 / Kepler KASC-7 joint meeting, Toulouse, 6-11, July 2014.
EPJ Web of Conferences, 101, 06021, 2015</p>
<p><font color="#c4ab6b">52.</font> </font>J. M. Benkő, <font color="#c4ab6b"> R. Szabó</font>:<br>
<a href="http://www.epj-conferences.org/articles/epjconf/pdf/2015/20/epjconf_sphr2014_06008.pdf">Connection between the period and the amplitude of the Blazhko effect</a><br>
Proceedings of the CoRoT Symposium 3 / Kepler KASC-7 joint meeting, Toulouse, 6-11, July 2014.
EPJ Web of Conferences, 101, 06008, 2015</p>
<p><font color="#c4ab6b">51.</font> </font> <font color="#c4ab6b"> R. Szabó</font>, J. M. Benkő, M. Paparó, E. Chapellier,
E. Poretti, et al.:<br>
<a href="http://www.epj-conferences.org/articles/epjconf/pdf/2015/20/epjconf_sphr2014_01003.pdf">The space photometry revolution and our understanding of RR Lyrae stars</a><br>
Proceedings of the CoRoT Symposium 3 / Kepler KASC-7 joint meeting, Toulouse, 6-11, July 2014.
EPJ Web of Conferences, 101, 01003, 2015</p>
<p><font color="#c4ab6b">50. </font> N. R. Evans, <font color="#c4ab6b">R. Szabó</font>, L. Szabados, A. Derekas,
L. Kiss, J. Matthews, C. Cameron:<br>
<i><a href="http://adsabs.harvard.edu/abs/2014AAS...22421906E">
The MOST Accurate Photometry for Cepheid Modes</a></i><br> AAS, 224, 219.06, 2014</p>
<p><font color="#c4ab6b">49.</font> </font> <font color="#c4ab6b"> R. Szabó:</font> <br>
<a href="http://adsabs.harvard.edu/abs/2014IAUS..301..241S">Blazhko effect in Cepheids and RR Lyrae stars</a><br>
Conference proceedings of the IAU Symposium No. 301. "Precision Asteroseismology. Celebration of the
Scientific Opus of Wojtek Dziembowski", p. 241,
19-23 August 2013, Wroclaw, Poland, 2014, arXiv:1309.3969</p>
<p><font color="#c4ab6b">48.</font> L. Molnár, J. M. Benkő, <font color="#c4ab6b"> R. Szabó</font>,
Z. Kolláth:<br>
<a href="http://adsabs.harvard.edu/abs/2014IAUS..301..459M">Kepler RR Lyrae stars: beyond period doubling</a><br>
Conference proceedings of the IAU Symposium No. 301. "Precision Asteroseismology. Celebration of the
Scientific Opus of Wojtek Dziembowski", p. 459,
19-23 August 2013, Wroclaw, Poland, 2014, arXiv:1309.4888</p>
<p><font color="#c4ab6b">47.</font> J. M. Benkő, <font color="#c4ab6b"> R. Szabó:</font> <br>
<a href="http://adsabs.harvard.edu/abs/2014IAUS..301..383B">Are RRab stars fully radial?</a><br>
Conference proceedings of the IAU Symposium No. 301. "Precision Asteroseismology. Celebration of the
Scientific Opus of Wojtek Dziembowski", p. 383,
19-23 August 2013, Wroclaw, Poland, 2014, arXiv:1309.4227</p>
<p><font color="#c4ab6b">46.</font> N. R. Evans, <font color="#c4ab6b"> R. Szabó</font>, L. Szabados, A. Derekas, J. Matthews, C. Cameron:<br>
<a href="http://arxiv.org/abs/1401.5032">Subtle Flickering in Cepheids: Kepler and MOST</a><br>
Conference proceedings of the IAU Symposium No. 301. "Precision Asteroseismology. Celebration of the
Scientific Opus of Wojtek Dziembowski", p. 55,
19-23 August 2013, Wroclaw, Poland, 2014, arXiv:1401.5032</p>
<p><font color="#c4ab6b">45.</font> </font> L. Molnár, L. Szabados, R. J. Dukes Jr.,
A. Győrffy, <font color="#c4ab6b"> R. Szabó</font>: <br>
<a href="http://adsabs.harvard.edu/abs/2013AN....334..980M">Analysis of the possible Blazhko-effect Cepheid V473 Lyrae</a><br>
AN, 334, 980, 2013</p>
<p><font color="#c4ab6b">44.</font> </font> <font color="#c4ab6b"> R. Szabó</font>,
Z. Kolláth, L. Molnár, K. Kolenberg, D. W. Kurtz et al.: <br>
<a href="http://adsabs.harvard.edu/abs/2013ASSP...31...81S">Period doubling in Kepler RR Lyrae stars</a><br>
Astrophysics and Space Science Proceedings series (ASSP), Vol 31., p 81, in the proceedings of "20th Stellar
Pulsation Conference Series: Impact of new instrumentation & new insights in stellar pulsations",
5-9 September 2011, Granada, Spain, 2013</p>
<p><font color="#c4ab6b">43.</font> </font> L. Molnár, Z. Kolláth, <font color="#c4ab6b"> R. Szabó</font>: <br>
<a href="http://adsabs.harvard.edu/abs/2013ASSP...31..185M">Uncovering hidden modes in RR Lyrae stars</a><br>
Astrophysics and Space Science Proceedings series (ASSP), Vol 31., p 185, in the proceedings of "20th Stellar
Pulsation Conference Series: Impact of new instrumentation & new insights in stellar pulsations",
5-9 September 2011, Granada, Spain, 2013</p>
<p><font color="#c4ab6b">42.</font> </font> L. Molnár, Z. Kolláth, <font color="#c4ab6b"> R.
Szabó</font>, E. Plachy:<br>
<a href="http://adsabs.harvard.edu/abs/2012AN....333..950M">New results in RR Lyrae modeling: convective cycles, additional modes and more</a><br>
Astronomische Nachrichten, 333, Vol. 10. 950-953, 2012</p>
<p><font color="#c4ab6b">41.</font> </font> H. Rauer & <font color="#c4ab6b">
the PLATO Mission Consortium</font>: <br>PLATO: the next generation space-based transit survey
<a href=""></a><br>
Proceedings of the 2nd CoRoT symposium p. 321, 2012</p>
<p><font color="#c4ab6b">40.</font> </font>J. M. Benkő, M. Paparó,
<font color="#c4ab6b"> R. Szabó</font>: <br>Where is the energy or where does it come from?
On the amplitude of harmonics of the CoRoT RR Lyrae star 101370131
<a href=""></a><br>
Proceedings of the 2nd CoRoT symposium p. 233, 2012</p>
<p><font color="#c4ab6b">39.</font> </font>J. M. Benkő, <font color="#c4ab6b"> R. Szabó</font>,
M. Paparó: <br>Modulated Light Curves of Multiperiodic Stars
<a href="http://adsabs.harvard.edu/abs/2012IAUS..285..286B"></a><br>
Proceedings of the IAU Symp. No 285. p. 286, 2012</p>
<p><font color="#c4ab6b">38.</font> </font> Gy. M. Szabó, <font color="#c4ab6b"> R. Szabó</font>,
J. M. Benkő, H. Lehmann, Gy. Mező, A. E. Simon, Zs. Kővári, G. Hodosán, Zs. Regály,
L. L. Kiss:<br>
<a href="http://adsabs.harvard.edu/abs/2012IAUS..282..139S">Asymmetric Transit Curves as Indication of Orbital Obliquity: Clues from the Brown Dwarf
Companion in KOI-13</a><br>
Proceedings of the IAU Symp. No 282. p. 139, 2012</p>
<p><font color="#c4ab6b">37.</font> </font>C.-C. Ngeow, <font color="#c4ab6b"> R. Szabó</font>,
L. Szabados, A. Henden, M.A.T. Groenewegen & the Kepler Cepheid Working Group: <br>
<a href="http://arxiv.org/abs/1111.2101">Ground-Based BVRI Follow-Up Observations of the Cepheid V1154 Cyg in Kepler's Field</a><br>
Astrophysics and Space Science Proceedings series (ASSP), 31, P4, 2013, arXiv:1111.2101</p>
<p><font color="#c4ab6b">36.</font> </font>P. Moskalik, R. Smolec, K. Kolenberg, J. Nemec, A. Kunder,
M. Chadid, G. Kopacki, <font color="#c4ab6b"> R. Szabó</font> +WG13 members: <br>
<a href="http://arxiv.org/abs/1208.4251">Discovery of Peculiar Double-Mode Pulsations and Period Doubling in Kepler RRc Variables</a><br>
Astrophysics and Space Science Proceedings series (ASSP), 31, P34, 2013, arXiv:1208.4251</p>
<p><font color="#c4ab6b">35.</font> </font> L. Celik, F. Ekmeci, J. Nemec, K. Kolenberg, J. M. Benkő,
<font color="#c4ab6b"> R. Szabó</font> et al.: <br>
<a href="http://adsabs.harvard.edu/cgi-bin/bib_query?arXiv:1202.3607">How to Correctly Stitch Together Kepler Data of a Blazhko Star</a><br>
Astrophysics and Space Science Proceedings series (ASSP), 31, P25, 2013, arXiv:1202.3607</p>
<p><font color="#c4ab6b">34.</font> </font> E. Guggenberger, K. Kolenberg, J. Nemec,<font color="#c4ab6b"> R. Szabó</font>,
J. Benkő: <br>
<a href="http://link.springer.com/content/esm/chp:10.1007/978-3-642-29630-7_53/file/MediaObjects/299986_1_En_53_MOESM11_ESM.pdf">Changing Blazhko modulations: KIC 6186029 in comparison with other cases of non-repetitive Blazhko cycles</a><br>
Astrophysics and Space Science Proceedings series (ASSP), 31, P11, 2013</p>
<p><font color="#c4ab6b">33.</font> </font> J. M. Nemec, R. Smolec, J. M. Benkő, ..., <font color="#c4ab6b">
R. Szabó</font> et al.: <br>
<a href="http://adsabs.harvard.edu/abs/2011arXiv1108.5683N">Non-Blazhko RR Lyrae Stars Observed with the Kepler Space Telescope</a><br>
Carnegie Observatories Astrophysics Series, Vol. 5: RR Lyrae Stars, Metal-Poor Stars, and the Galaxy
ed. A. McWilliam (Pasadena: Carnegie Observatories), p84, 2011</p>
<p><font color="#c4ab6b">32.</font> </font> R. Silvotti,<font color="#c4ab6b"> R. Szabó</font>,
P. Degroote, R. Ostensen, S. Schuch: <br>
<a href="http://adsabs.harvard.edu/abs/2011AIPC.1331..133S">The potential of the timing method to detect evolved planetary systems</a><br>
AIPC 1331, 133, 2011</p>
<p><font color="#c4ab6b">31.</font> </font> <font color="#c4ab6b"> R. Szabó</font>: <br>
<a href="http://real.mtak.hu/2120/">A Kepler-űrmisszió</a><br>
Konkoly Observatory of the Hungarian Academy of Sciences
<a href="http://www.konkoly.hu/Mitteilungen/m6.pdf">Monographs 6.</a> pp 22-28, 2010</p>
<p><font color="#c4ab6b">30.</font> </font> A. Grigahcène, K. Uytterhoeven, V. Antoci,
..., <font color="#c4ab6b"> R. Szabó</font> et al.: <br>
<a href="http://adsabs.harvard.edu/abs/2010AN....331..989G">Kepler observations: Light
shed on the hybrid gamma Doradus and delta Scuti pulsation phenomenon </a><br>
Astronomische Nachrichten, 331, 989, 2010</p>
<p><font color="#c4ab6b">29.</font> </font> D. Stello, S. Basu, T. R. Bedding, ..., <font
color="#c4ab6b"> R. Szabó</font>: <br>
<a href="http://adsabs.harvard.edu/abs/2010AN....331..985S">Solar-like oscillations in
cluster stars</a><br> Astronomische Nachrichten, 331, 985, 2010</p>
<p><font color="#c4ab6b">28.</font> </font> K. Uytterhoeven, <font color="#c4ab6b"> R.
Szabó</font>, J. Southworth et. al:<br>
<a href="http://adsabs.harvard.edu/abs/2010arXiv1003.6089U">Ground-based observations of
Kepler asteroseismic targets</a><br>
Astronomische Nachrichten, 331, P30, 2010</p>
<p><font color="#c4ab6b">27.</font> </font> K. Uytterhoeven, M. Briquet, H. Bruntt, ..., <font
color="#c4ab6b"> R. Szabó</font> :<br>
<a href="http://adsabs.harvard.edu/abs/2010AN....331..993U">Ground-based follow-up in
relation to Kepler Asteroseismic Investigation</a><br>
Astronomische Nachrichten, 331, 993, 2010</p>
<p><font color="#c4ab6b">26.</font> </font> K. Kolenberg, <font color="#c4ab6b"> R. Szabó</font>, D. Kurtz,
KASC Working Group #13, Kepler Team:<br>
<a href="http://adsabs.harvard.edu/abs/2010AAS...21531704K">First Results from Kepler for RR
Lyrae Stars</a><br> AAS, 215, 317.04, 2010</p>
<p><font color="#c4ab6b">25.</font> </font><font color="#c4ab6b"> R. Szabó</font>, Z. Kolláth, L. Molnár, J. M. Benk<span lang="hu">ő</span>,
L. Szabados:<br>
<a href="http://adsabs.harvard.edu/abs/2009AIPC.1170..102">Strange and Low Amplitude Cepheid
Candidates in the CoRoT Observations</a><br> AIP Conf. Ser, 1170, 102, 2009</p>
<p><font color="#c4ab6b">24.</font> </font><font color="#c4ab6b"> R. Szabó</font>, M. Paparó, J. M. Benk<span lang="hu">ő</span>,
M. Chadid, K. Kolenberg, E. Poretti:<br>
<a href="http://adsabs.harvard.edu/abs/2009AIPC.1170..291">Amplitude and phase modulation in
CoRoT RR Lyrae stars</a><br> AIP Conf. Ser, 1170, 291, 2009</p>
<p><font color="#c4ab6b">23.</font> J. Benk<span lang="hu">ő</span>, M. Paparó,</font><font color="#c4ab6b"> R. Szabó</font>, M. Chadid,
K. Kolenberg, E. Poretti:<br>
<a href="http://adsabs.harvard.edu/abs/2009AIPC.1170..273"> An alternative mathematical
treatment of the modulated RR Lyrae stars</a><br> AIP Conf. Ser, 1170, 273, 2009</p>
<p><font color="#c4ab6b">22.</font> M. Paparó</font><font color="#c4ab6b"> R. Szabó</font>, J. Benk<span lang="hu">ő</span>, M. Chadid, E. Poretti,
K. Kolenberg, E. Guggenberger, E. Chapellier: <br>
<a href="http://adsabs.harvard.edu/abs/2009AIPC.1170..240">Shock wave and pulsation connection
in a monoperiodic CoRoT RR Lyrae star</a><br> AIP Conf. Ser, 1170, 240, 2009</p>
<p><font color="#c4ab6b">21.</font> M. Chadid, A. Baglin, J. Benk<span lang="hu">ő</span>, G. Bono, E. Chapellier, E. Guggenberger,
K. Kolenberg, M. Paparó, E. Poretti, </font><font color="#c4ab6b"> R. Szabó</font>, H. Trinquet, W. W. Weiss:<br>
<a href="http://adsabs.harvard.edu/abs/2009AIPC.1170..235">First RR Lyrae light curve from
CoRoT. Big challenge and constraint to the theoretical models </a><br> AIP Conf. Ser, 1170,
235, 2009</p>
<p><font color="#c4ab6b">20.</font> E. Antonello, L. Speroni, S. Kanbur, I. Richter, </font><font color="#c4ab6b"> R. Szabó</font>:<br>
<a href="http://adsabs.harvard.edu/abs/2009CoAst.158..274A">On the possible resonance of very
high order pulsation modes in Cepheids</a><br> Communications in Astroseismology, 158, 274,
2009</p>
<p><font color="#c4ab6b">19. </font><font color="#c4ab6b"> R. Szabó</font> & J. R. Buchler:<br>
<a href="http://adsabs.harvard.edu/abs/2009EAS....38..107S"><i>Mode Identification with
Cepheid Phase-lag</a></i><br>
EAS Publ. Ser. 38, 107, 2009</p>
<p><font color="#c4ab6b">18. </font> J. R. Buchler & <font color="#c4ab6b">R. Szabó</font>: <br>
<a href="http://adsabs.harvard.edu/abs/2008JPhCS.118a2068M"><i>Beat Cepheids as Galactic
Metallicity Tracers</a></i><br>
EAS Publ. Ser. 38, 73, 2009</p>
<p><font color="#c4ab6b">17. </font>A. Majewska-Swierzbinowicz, A. Pigulski,
<font color="#c4ab6b">R. Szabó</font>, Z. Csubry:</b> <br>
<a href="http://adsabs.harvard.edu/abs/2008JPhCS.118a2068M">Pulsating B-type stars in the young
open cluster h Persei (NGC 869)</a><br> Journal of Phys.: Conf. Ser., Vol. 118, Issue 1, pp.
012068, 2008</p>
<p><font color="#c4ab6b">16. </font>D. Stello, H. Bruntt, T. Arentoft, ..., <font color="#c4ab6b">R. Szabó</font> et al. </b> <br>
<i><a href="http://adsabs.harvard.edu/abs/2007CoAst.150..149S">Solar-like oscillations in open
cluster stars</a></i><br> CoAst, 150, 149, 2007</p>
<p><font color="#c4ab6b">15. </font>M. D. Reed, <font color="#c4ab6b">the Whole Earth Telescope XCov21 and 23 collaborations</font>:</b> <br>
<i><a href="http://adsabs.harvard.edu/abs/2006MmSAI..77..417R">The observational search for
tidally tipped pulsation axes in subdwarf B stars</a></i><br> MmSAI, 77, 417, 2006</p>
<p><font color="#c4ab6b">14. </font>M. D. Reed, <font color="#c4ab6b">the Whole Earth Telescope XCov21 and 23 collaborations</font>:<br>
<i><a href="http://adsabs.harvard.edu/abs/2006BaltA..15..269R">Searching for Observational
Evidence of Tidally Inclined Pulsations</a></i><br> Balt. Astr., 15, 269, 2006</p>
<p><font color="#c4ab6b">13. </font> Feiden. G., Kanbur, S., <font color="#c4ab6b">R. Szabó</font> & Ngeow, C.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2006AAS...20910204F">
A Theoretical Investigation into the Properties of RR Lyraes at Maximum and Minimum
Light</a></i><br> AAS, 209, 10204, 2006</p>
<p> <font color="#c4ab6b">12. </font>M. Paparó, <font color="#c4ab6b">R. Szabó</font> & Z. Csubry:<br>
<i><a href="http://adsabs.harvard.edu/abs/2005ASPC..334..597P"> White Dwarf Observations in
Hungary</a></i><br> Eds.: D. Koester, S. Moehler, ASP Conference Series, 334, 597, 2005</p>
<p> <font color="#c4ab6b"> 11.</font> D. Stello, T. Arentoft, T. Bedding, Y. Bouzid, H. Bruntt, ..., <font color="#c4ab6b">R. Szabó</font>, et al.:<br>
<i><a href="http://adsabs.harvard.edu/abs/2004ESASP.559..639S">Multi-site Time Series
Photometry of the Open Cluster M67</a></i><br> in Conf. Proc. of SOHO 14 / GONG 2004 meeting
(ESA SP-559). "Helio- and Asteroseismology: Towards a Golden Future" Ed.: D. Danesy, p. 639,
2004</p>
<p> <font color="#c4ab6b">10. </font><font color="#c4ab6b">R. Szabó</font>:<br>
<i><a href="http://adsabs.harvard.edu/abs/2004PADEU..14..234S">Adventures in the World of
Pulsating Variable Stars: Multisite Photometric Campaigns</a></i><br> Publications of the
Astronomy Department of the Eötvös University (PADEU) Eds.: E. Forgács-Dajka, K. Petrovay &
R. Erdélyi No. 14., pp. 234-238, 2004 </p>
<p> <font color="#c4ab6b">9. </font><font color="#c4ab6b">R. Szabó</font>:<br>
<i>Numerical modelling of the RR Lyrae instability strip</i><br>
<a href="http://adsabs.harvard.edu/abs/2004CoAst.145...21S">Communications in
Asteroseismology</a> <b>145</b>, 21, 2004<br></p>
<p><font color="#c4ab6b">8.</font> S. Poindexter, M. D. Reed, S. Charpinet, & <font color="#c4ab6b"> the Whole Earth Telescope Xcov 23 Team</font><br>
<a href="http://adsabs.harvard.edu/abs/2003AAS...203.1216P"><i>A Whole Earth Telescope
campaign on the sdB+WD close binary KPD+1930+2752</i></a><br> AAS 203, 1216, 2003</p>
<p><font color="#c4ab6b">7.</font> <font color="#c4ab6b">R. Szabó</font> & Z. Csubry: <br>
<a href="http://adsabs.harvard.edu/abs/2002PADEU..12...19S"> <i>RR Lyrae variables: Pulsation
and evolution</i></a><br> Publications of the Astronomy Department of the Eötvös Loránd
University, No. 12. Ed.: E. Forgács-Dajka pp 19-24, 2002 </p>
<p> <font color="#c4ab6b">6.</font><b> <font color="#c4ab6b">R. Szabó</font>, Z. Csubry, Z. Kolláth & J. R. Buchler: <br>
<a href="http://adsabs.harvard.edu/abs/2002ASPC..259..404S"> <i>Synthetic Nonlinear RR Lyrae
Instability Strips</i></a>,<br> Eds.: C. Aerts, T. R. Bedding & J. Christensen-Dalsgaard,
ASP Conference Series, 259, 404, 2002</p>
<p> <font color="#c4ab6b">5.</font> Z. Csubry, <font color="#c4ab6b">R. Szabó</font>, Z. Kolláth & J. R. Buchler: <br>
<a href="http://adsabs.harvard.edu/abs/2002ASPC..259..406C"> <i>Combined Modeling of Stellar
Evolution and Pulsation</i></a>, <br> Eds.: C. Aerts, T.R. Bedding & J.
Christensen-Dalsgaard, ASP Conference Series, 259, 406, 2002 </p>
<p> <font color="#c4ab6b">4.</font><font color="#c4ab6b"> R. Szabó</font>, Z. Kolláth, Z. Csubry
& J. R. Buchler: <br> <a href="http://adsabs.harvard.edu/abs/2001ASPC..245..373S">
<i>Timescales and transitions during stellar pulsation and evolution</i></a><br>
in Astrophysical Ages and Time Scales, Eds: T. von Hippel, N. Manset & C. Simpson, ASP
Conference Series 245, 2001 </p>
<p><font color="#c4ab6b">3.</font> <font color="#c4ab6b">R. Szabó</font> & Z. Csubry: <br>
<a href="http://adsabs.harvard.edu/abs/2001PADEU..11..101S"><i>Modeling of RR Lyrae instability
strips</i></a><br> Publications of the Astronomy Department of the Eötvös Lorïánd University No.
11., Eds.: E. Forgács-Dajka, Zs. Sándor, 2001</p>
<p><font color="#c4ab6b">2.</font> <font color="#c4ab6b">R. Szabó</font>, Z. Kolláth & Z. Csubry: <br>
<a href="http://www.konkoly.hu/staff/rszabo/phd99.ps.gz"> <i>Numerical modeling of double-mode
RR Lyrae stars</i></a><br> in Proceedings of the PhD Conference 1999 . . . A Bridge over
Generations of Variable Star Researchers, Eds.: R.E. Wilson, T. Hegedűs, T. Borkovits,A.
Gimenez, Baja-Madrid, 2001 </p>
<p><font color="#c4ab6b">1.</font> <font color="#c4ab6b">R. Szabó</font>, Z. Csubry, Z. Kolláth & J. R. Buchler: <br>
<a href="http://adsabs.harvard.edu/abs/2000ASPC..203..374S"> <i>Nonlinear Survey of RRd
Models</i></a><br> in The Impact of Large-Scale Surveys on Pulsating Star Research, Eds:
L. Szabados & D. Kurtz, ASP Conference Series, 203, 374-375, 2000 </p>
<p> <a name="oth"><font color="#c4ab6b" size="2"><b>Other publications:</b></font></a></p>
<p><font color="#c4ab6b">16.</font> L. Molnár, <font color="#c4ab6b">R. Szabó</font>, E. Plachy:<br>
<a href="https://www.aavso.org/apps/jaavso/article/3235/">Variable Stars with the Kepler Space Telescope</a> <br>
JAAVSO, 44, 168, 2016</p>
<p><font color="#c4ab6b">15.</font> L. Molnár, A. L. Juhász, E. Plachy, <font color="#c4ab6b">R. Szabó</font>:<br>
<a href="http://www.konkoly.hu/cgi-bin/IBVS?6175">Metal-rich or misclassified? The case of four RR Lyrae stars</a> <br>
IBVS 6175, 2016</p>
<p><font color="#c4ab6b">14.</font> K. Vida, E., Plachy, L. Molnár, ..., <font color="#c4ab6b">R. Szabó</font>:<br>
<a href="http://www.konkoly.hu/cgi-bin/IBVS?6173">Spotted stars as Cepheid impostors observed with K2</a> <br>
IBVS 6173, 2016</p>
<p><font color="#c4ab6b">13.</font> L. Molnár, E. Plachy, <font color="#c4ab6b">R. Szabó</font>:<br>
<a href="http://www.konkoly.hu/cgi-bin/IBVS?6108">Cepheids and RR Lyrae stars in the K2 fields</a> <br>
IBVS 6108, 2014</p>
<p><font color="#c4ab6b">12.</font> Cs. P. Kiss, Gy. M. Szabó, <font color="#c4ab6b">R. Szabó</font>, K. Sárneczky, L. L. Kiss:<br>
<a href="kepler_wp_tno.pdf">Trans-Neptunian objects with K2: targeting our own Solar System
</a> <br>
Kepler White paper, 2014</p>
<p><font color="#c4ab6b">11.</font> <font color="#c4ab6b">R. Szabó</font>, L. Molnár, Z. Kolaczkowski et al.:<br>
<a href="http://arxiv.org/abs/1309.0741">The Kepler-SEP Mission: Harvesting the South Ecliptic Pole large-amplitude variables with Kepler
</a> <br>
Kepler White paper, 2013, arXiv:1309.0741</p>
<p><font color="#c4ab6b">10.</font> L. Molnár, <font color="#c4ab6b">R. Szabó</font>, K. Kolenberg et al.:<br>
<a href="http://arxiv.org/abs/1309.0740">The Kep-Cont Mission: Continuing the observation of high-amplitude variable stars in the Kepler
field of view </a> <br>
Kepler White paper, 2013, arXiv:1309.0740</p>
<p><font color="#c4ab6b">9.</font> J. A. Guzik, P. A. Bradley, <font color="#c4ab6b">R. Szabó</font>, et al.:<br>
<a href="http://arxiv.org/abs/1310.0772">Observing Open Clusters with a Sequence of Ages with Kepler
</a> <br>
Kepler White paper, 2013, arXiv:1310.0772</p>
<p> <font color="#c4ab6b">8. </font> <font color="#c4ab6b">R. Szabó</font>:<br>
<i>Numerical modelling of the RR Lyrae Instability Strip<br>
PhD thesis, </i>2004 <a href="summary.ps">summary</a><br>
Full text in Hungarian: <a href="dolgozat.ps.gz">postscript </a>/<a href="dolgozat.pdf"> pdf
version</a></p>
<p><font color="#c4ab6b">7.</font> <font color="#c4ab6b">R. Szabó</font>:<br>
<a href="http://www.konkoly.hu/cgi-bin/IBVS?4700">New variable stars in NGC 7762</a> <br>
IBVS 4700, 1999</p>
<p><font color="#c4ab6b">6. </font> <font color="#c4ab6b">R. Szabó</font>:<br>
<a href="http://cfa-www.harvard.edu/iauc/07100/07196.html" > Supernovae 1999cd and
1999cf</a><br> IAUC 7196, 1999.</p>
<p><font color="#c4ab6b">5. </font><font color="#c4ab6b"> R. Szabó</font>:<br>
<a href="http://cfa-www.harvard.edu/iauc/07100/07193.html"> Supernovae</a><br>
IAUC 7193, 1999</p>
<p><font color="#c4ab6b">4. </font> <font color="#c4ab6b">R. Szabó</font>:<br>
<a href="http://cfa-www.harvard.edu/iauc/07100/07185.html#Item4">
Supernovae 1998S, 1999Z, 1999aa, 1999ac, 1999an, 1999be</a><br>
IAUC 7185</a>, 1999</p>
<p><font color="#c4ab6b">3. </font> <font color="#c4ab6b">R. Szabó</font>:<br>
<a href="http://adsabs.harvard.edu/abs/1998KOTN...10....1S">
Users's guide to the 1m RCC Telescope and its instruments</a><br>
Konkoly Observatory Occasional Technical Notes 10</a>, 1998</p>
<p><font color="#c4ab6b">2. </font> <font color="#c4ab6b">R. Szabó</font>:<br>
<a href="http://adsabs.harvard.edu/abs/1998KOTN....9....1S">
Users Guide to the 50cm Cassegrain Telescope and its instruments</a><br>
Konkoly Observatory Occasional Technical Notes 9</a>, 1998</p>
<p><font color="#c4ab6b">1. </font> J. Kelemen, <font color="#c4ab6b">R. Szabó</font>, A. Holl:<br>
<a href="http://adsabs.harvard.edu/abs/1998KOTN....8....1K">
Guide to the Schmidt telescope</a><br>
Konkoly Observatory Occasional Technical Notes 8</a>, 1998</p>
<p> <a name="pop"><font color="#c4ab6b" size="2"><b>Popular science articles in Hungarian:</b></font></a></p>
<p> <font color="#c4ab6b">61.</font> <font color="#c4ab6b">Szabó R.:</font></font> <br>
<a href="https://www.csillagaszat.hu/hirek/amerikai-anzix-iii-a-kitt-peak-nemzeti-obszervatorium/">
<i>Amerikai Anzix. III. A Kitt Peak Nemzeti Obszervatórium</i><br></a>
<a href="http://hirek.csillagaszat.hu"> <i>hirek.csillagaszat.hu</i></a>
2017. október 15.<br></p>
<p> <font color="#c4ab6b">60.</font> <font color="#c4ab6b">Szabó R.:</font></font> <br>
<a href="https://www.csillagaszat.hu/hirek/asztroblog/amerikai-anzix-ii-a-lowell-obszervatorium/">
<i>Amerikai Anzix. II. A Lowell Obszervatórium</i><br></a>
<a href="http://hirek.csillagaszat.hu"> <i>hirek.csillagaszat.hu</i></a>
2017. szeptember 28.<br></p>
<p> <font color="#c4ab6b">59.</font> <font color="#c4ab6b">Szabó R.:</font></font> <br>
<a href="https://www.csillagaszat.hu/hirek/asztroblog/amerikai-anzix-i-a-nagy-amerikai-teljes-napfogyatkozas/">
<i>Amerikai Anzix. I. A Nagy amerikai teljes napfogyatkozás</i><br></a>
<a href="http://hirek.csillagaszat.hu"> <i>hirek.csillagaszat.hu</i></a>
2017. augusztus 22.<br></p>
<p> <font color="#c4ab6b">58.</font> <font color="#c4ab6b">Szabó R.:</font></font> <br>
<a href="http://www.csillagaszat.hu/hirek/egbol-hullott-kovek-az-atacama-sivatagban/">
<i>Égből hullott kövek az Atacama-sivatagban</i><br></a>
<a href="http://hirek.csillagaszat.hu"> <i>hirek.csillagaszat.hu</i></a>
2016. december 7.<br></p>
<p> <font color="#c4ab6b">57.</font> <font color="#c4ab6b">Szabó R.:</font></font> <br>
<a href="http://www.csillagaszat.hu/hirek/pulzalo-csillagok-az-atacama-sivatagban/">
<i>Pulzáló csillagok az Atacama-sivatagban</i><br></a>
<a href="http://hirek.csillagaszat.hu"> <i>hirek.csillagaszat.hu</i></a>
2016. december 2.<br></p>
<p> <font color="#c4ab6b">56.</font> <font color="#c4ab6b">Szabó R.:</font></font> <br>
<a href="http://www.csillagaszat.hu/hirek/a-kepler-tess-csillagszeizmologiai-tudomanyos-konferenciarol-jelentjuk/">
<i>A Kepler-TESS csillagszeizmológiai tudományos konferenciáról jelentjük</i><br></a>
<a href="http://hirek.csillagaszat.hu"> <i>hirek.csillagaszat.hu</i></a>
2016. július 22.<br></p>
<p> <font color="#c4ab6b">55.</font> Dálya G., Hanyecz O., <font color="#c4ab6b"> Szabó R</font>:
<br><i>Kisbolygóvadászat Kepler-űrtávcsővel</i><br>
Természet Világa 2015/11, p. 515</p>
<p> <font color="#c4ab6b">54.</font> <font color="#c4ab6b">Szabó R.:</font> <br>
<a href="http://www.ng.hu/Fold/2015/07/06/Idegen-vilagok-kutatasa-az-urbol">
<i>Idegen világok kutatása az űrből</i><br></a>
<a href="http://www.ng.hu"> <i>National Geographic</i></a>
2015. július 6. <br></p>
<p> <font color="#c4ab6b">53.</font> <font color="#c4ab6b">Szabó R.:</font> <br>
<a href="http://www.ng.hu/Fold/2015/02/07/Rosetta-a-tortenelmi-jelentosegu-kuldetes">
<i>Rosetta, a történelmi jelentőségű küldetés</i><br></a>
<a href="http://www.ng.hu"> <i>National Geographic</i></a>
2015. február 7. <br></p>
<p> <font color="#c4ab6b">52.</font> <font color="#c4ab6b">Szabó R.:</font> <br>
<a href="http://www.csillagaszat.hu/hirek/tejutrendszer/tr-a-tejutrendszer-szerk/meterrudak-tejutrendszer-tuloldal/">
<i>Méterrudak a Tejútrendszer túloldalán</i><br></a>