-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcitations.bib
executable file
·1070 lines (1017 loc) · 34 KB
/
citations.bib
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
@article{kohenconstrucciones,
title={Construcciones de puntos de {H}eegner},
author={Kohen, Daniel}
}
@article{kim2017indivisibility,
title={On the indivisibility of derived {K}ato's {E}uler systems and the main conjecture for modular forms},
author={Kim, Chan-Ho and Kim, Myoungil and Sun, Hae-Sang},
journal={arXiv preprint arXiv:1709.05780},
year={2017}
}
@article{portillo2017experimental,
title={Experimental {E}vidence on a {R}efined {C}onjecture of the {BSD} type},
author={Portillo-Bobadilla, Francisco X},
journal={arXiv preprint arXiv:1709.01204},
year={2017}
}
@article{bruinarithmetic,
title={Arithmetic {A}spects of {E}xplicit {M}oduli {P}roblems},
author={Bruin, Nils and Kedlaya, Kiran and Siksek, Samir and Voight, John}
}
@article{kohlhase2017math,
title={Math {O}bject {I}dentifiers---{T}owards {R}esearch {D}ata in {M}athematics},
author={Kohlhase, Michael},
year={2017}
}
@article{barquero2017distribution,
title={The distribution of {$G$}-{W}eyl {CM} fields and the {C}olmez conjecture},
author={Barquero-Sanchez, Adrian and Masri, Riad and Thorne, Frank},
journal={arXiv preprint arXiv:1708.00044},
year={2017}
}
@article{molin2017computing,
title={Computing period matrices and the {A}bel-{J}acobi map of superelliptic curves},
author={Molin, Pascal and Neurohr, Christian},
journal={arXiv preprint arXiv:1707.07249},
year={2017}
}
@article{dasgupta2017sylvester,
title={Sylvester's {P}roblem and {M}ock {H}eegner {P}oints},
author={Dasgupta, Samit and Voight, John},
journal={arXiv preprint arXiv:1707.05874},
year={2017}
}
@article{dummit2017decomposition,
title={Decomposition {C}onfiguration {T}ypes in {M}inimally {T}amely {R}amified {E}xtensions of $\mathbb{Q}$},
author={Dummit, David S and Kisilevsky, Hershy},
journal={arXiv preprint arXiv:1707.02493},
year={2017}
}
@article{sijsling2017canonical,
title={Canonical models of arithmetic $(1;\infty)$ curves},
author={Sijsling, Jeroen},
journal={arXiv preprint arXiv:1707.01158},
year={2017}
}
@article{waldschmidtintroduction,
title={An introduction to the {R}iemann zeta function},
author={Waldschmidt, Michel}
}
@article{dokchitser20173,
title={3-torsion and conductor of genus 2 curves},
author={Dokchitser, Tim and Doris, Christopher},
journal={arXiv preprint arXiv:1706.06162},
year={2017}
}
@article{bruin2017𝐿,
title={On {L}-functions of quadratic $\mathbb{Q}$-curves},
author={Bruin, Peter and Ferraguti, Andrea},
journal={Mathematics of Computation},
year={2017}
}
@article{rambauddense,
title={Dense families of curves with many points of higher degree and applications to multiplication},
author={Rambaud, Matthieu}
}
@inproceedings{kohlhase2017software,
title={Software {C}itations, {I}nformation {S}ystems, and {B}eyond},
author={Kohlhase, Michael and Sperber, Wolfram},
booktitle={International Conference on Intelligent Computer Mathematics},
pages={99--114},
year={2017},
organization={Springer}
}
@article{mustydessins,
title={Dessins d'{E}nfants},
author={Musty, Michael}
}
@article{liu2017realizability,
title={The {R}ealizability {P}roblem with {I}nertia {C}onditions},
author={Liu, Yuan},
journal={arXiv preprint arXiv:1705.03184},
year={2017}
}
@article{aygin2017representations,
title={Representations by sextenary quadratic forms with coefficients $1, 2, 3$ and $6$ and on newforms in $S_3(\Gamma_0(24),\chi)$},
author={Aygin, Zafer Selcuk},
journal={arXiv preprint arXiv:1705.01244},
year={2017}
}
@article{long2017supercongruences,
title={Supercongruences for rigid hypergeometric {C}alabi-{Y}au threefolds},
author={Long, Ling and Tu, Fang-Ting and Yui, Noriko and Zudilin, Wadim},
journal={arXiv preprint arXiv:1705.01663},
year={2017}
}
@inproceedings{holmstrom2017zeta,
title={Zeta Types and {T}annakian {S}ymbols as a {M}ethod for {R}epresenting {M}athematical {K}nowledge},
author={Holmstrom, Andreas and Vik, Torstein},
booktitle={International Conference on Intelligent Computer Mathematics},
pages={178--192},
year={2017},
organization={Springer}
}
@article{zhu2017spherical,
title={On spherical designs of some harmonic indices},
author={Zhu, Yan and Bannai, Eiichi and Bannai, Etsuko and Kim, Kyoung-Tark and Yu, Wei-Hsuan},
journal={The Electronic Journal of Combinatorics},
volume={24},
number={2},
pages={P2--14},
year={2017}
}
@article{lapkova2017explicit,
title={Explicit upper bound for the average number of divisors of irreducible quadratic polynomials},
author={Lapkova, Kostadinka},
journal={arXiv preprint arXiv:1704.02498},
year={2017}
}
@article{petridis2017arithmetic,
title={Arithmetic statistics of modular symbols},
author={Petridis, Yiannis N and Risager, Morten S},
journal={arXiv preprint arXiv:1703.09526},
year={2017}
}
@article{bordelles2017tme,
title={The {TME}-{EMT} Project},
author={Bordelles, Olivier and Dusart, Pierre and Moree, Pieter and Akhilesh, P and Ramar{\'e}, Olivier},
year={2017}
}
@article{chattopadhyaya2017dyon,
title={Dyon degeneracies from {M}athieu moonshine},
author={Chattopadhyaya, Aradhita and David, Justin R},
journal={arXiv preprint arXiv:1704.00434},
year={2017}
}
@article{cesnavicius2017manin,
title={The {M}anin constant in the semistable case},
author={Cesnavicius, Kestutis},
journal={arXiv preprint arXiv:1703.02951},
year={2017}
}
@article{billerey2017multi,
title={A multi-{F}rey approach to {F}ermat equations of signature $(r, r, p)$},
author={Billerey, Nicolas and Chen, Imin and Dieulefait, Luis and Freitas, Nuno},
journal={arXiv preprint arXiv:1703.06530},
year={2017}
}
@phdthesis{plaza2016representation,
title={Representation theory methods in extremal combinatorics},
author={Plaza, Rafael},
year={2016},
school={University of Delaware}
}
@article{carella2017note,
title={Note On {E}lliptic {G}roups of {P}rime {O}rders},
author={Carella, NA},
journal={arXiv preprint arXiv:1702.06814},
year={2017}
}
@article{duncan2017nan,
title={O'{N}an moonshine and arithmetic},
author={Duncan, John FR and Mertens, Michael H and Ono, Ken},
journal={arXiv preprint arXiv:1702.03516},
year={2017}
}
@article{ramakrishnan2017number,
title={On the number of representations of certain quadratic forms and a formula for the {R}amanujan {T}au function},
author={Ramakrishnan, B and Sahu, Brundaban and Singh, Anup Kumar},
journal={arXiv preprint arXiv:1702.01249},
year={2017}
}
@article{lemos2017serre,
title={Serre's {U}niformity {C}onjecture for {E}lliptic {C}urves with {R}ational {C}yclic {I}sogenies},
author={Lemos, Pedro},
journal={arXiv preprint arXiv:1702.01985},
year={2017}
}
@article{poor2016paramodular,
title={Paramodular forms of level 8 and weights 10 and 12},
author={Poor, Cris and Schmidt, Ralf and Yuen, David},
journal={Preprint},
year={2016}
}
@article{tsaknias2016topics,
title={Topics on modular {G}alois representations modulo prime powers},
author={Tsaknias, Panagiotis and Wiese, Gabor},
journal={arXiv preprint arXiv:1612.05017},
year={2016}
}
@article{lombardo2016reductions,
title={Reductions of points on algebraic groups},
author={Lombardo, Davide and Perucca, Antonella},
journal={arXiv preprint arXiv:1612.02847},
year={2016}
}
@article{kuhn2016largest,
title={The largest gap between zeros of entire {L}-functions is less than 41.54},
author={K{\"u}hn, Patrick and Robles, Nicolas and Zaharescu, Alexandru},
journal={Journal of Mathematical Analysis and Applications},
year={2016},
publisher={Elsevier}
}
@article{poor2016siegel,
title={Siegel paramodular forms of weight 2 and squarefree level},
author={Poor, Cris and Shurman, Jerry and Yuen, David S},
journal={arXiv preprint arXiv:1612.00925},
year={2016}
}
@article{roberts2016newforms,
title={Newforms with rational coefficients},
author={Roberts, David P},
journal={arXiv preprint arXiv:1611.06967},
year={2016}
}
@article{roberts2016pgl_2,
title={ {PGL}$_2(\mathbb{F}_l)$ number fields with rational companion forms},
author={Roberts, David P},
journal={arXiv preprint arXiv:1611.06628},
year={2016}
}
@phdthesis{borner2016functions,
title={L-functions of curves of genus $\geq 3$},
author={B{\"o}rner, Michel},
year={2016},
school={Universit{\"a}t Ulm}
}
@article{mascot2016companion,
title={Companion forms and explicit computation of {PGL2} number fields with very little ramification},
author={Mascot, Nicolas},
journal={arXiv preprint arXiv:1611.01464},
year={2016}
}
@article{lombardo2016computing,
title={Computing the geometric endomorphism ring of a genus 2 {J}acobian},
author={Lombardo, Davide},
journal={arXiv preprint arXiv:1610.09674},
year={2016}
}
@article{cohen2016dirichlet,
title={Dirichlet series associated to quartic fields with given cubic resolvent},
author={Cohen, Henri and Thorne, Frank},
journal={Research in Number Theory},
volume={2},
number={1},
pages={29},
year={2016},
publisher={Springer}
}
@article{jones2016artin,
title={Artin {L}-functions of small conductor},
author={Jones, John W and Roberts, David P},
journal={arXiv preprint arXiv:1610.01228},
year={2016}
}
@article{gonzalez2016growth,
title={Growth of torsion groups of elliptic curves upon base change},
author={Gonz{\'a}lez-Jim{\'e}nez, Enrique and Najman, Filip},
journal={arXiv preprint arXiv:1609.02515},
year={2016}
}
@article{corbett2016order,
title={On the order of vanishing of newforms at cusps},
author={Corbett, Andrew and Saha, Abhishek},
journal={arXiv preprint arXiv:1609.08939},
year={2016}
}
@article{dujella2016diophantine,
title={Diophantine $m$-tuples in finite fields and fields and modular forms},
author={Dujella, Andrej and Kazalicki, Matija},
journal={arXiv preprint arXiv:1609.09356},
year={2016}
}
@article{li2016potentially,
title={Potentially {GL}$_2$-type {Galois} representations associated to noncongruence modular forms},
author={Li, Wen-Ching Winnie and Liu, Tong and Long, Ling},
journal={arXiv preprint arXiv:1609.06414},
year={2016}
}
@article{martin2016refined,
title={Refined dimensions of cusp forms, and equidistribution and bias of signs},
author={Martin, Kimball},
journal={arXiv preprint arXiv:1609.05386},
year={2016}
}
@article{jenkins2016dynamic,
title={Dynamic behavior of the roots of the {T}aylor polynomials of the {R}iemann xi function with growing degree},
author={Jenkins, Robert and McLaughlin, Ken DT-R},
journal={arXiv preprint arXiv:1609.05965},
year={2016}
}
@article{savala2016computing,
title={Computing spectral data for {M}aass cusp forms using resonance},
author={Savala, Paul},
year={2016},
publisher={University of Iowa}
}
@article{long2016characterization,
title={Characterization of intersecting families of maximum size in {PSL}$(2,q)$},
author={Long, Ling and Plaza, Rafael and Sin, Peter and Xiang, Qing},
journal={arXiv preprint arXiv:1608.07304},
year={2016}
}
@article{chung2016arithmetic,
title={Arithmetic {C}hern-{S}imons Theory {I}{I}},
author={Chung, Hee-Joong and Kim, Dohyeong and Kim, Minhyong and Park, Jeehoon and Yoo, Hwajong},
journal={arXiv preprint arXiv:1609.03012},
year={2016}
}
@article{viada2016explicit,
title={Explicit height bounds and the explicit {M}ordell-{L}ang {C}onjecture},
author={Viada, Evelina},
journal={arXiv preprint arXiv:1609.04607},
year={2016}
}
@article{danielsranks,
title={On the ranks of elliptic curves with isogenies},
author={Daniels, Harris B and Goodwillie, ASA}
}
@article{dalawat2016solvable,
title={Solvable primitive $ p $-extensions},
author={Dalawat, Chandan Singh},
journal={arXiv preprint arXiv:1608.04673},
year={2016}
}
@phdthesis{garcia2016computational,
title={Computational aspects of {G}alois representations},
author={Garc{\'\i}a, Alejandro Arg{\'a}ez},
year={2016},
school={University of Warwick}
}
@article{antieau2016brauer,
title={The {B}rauer group of the moduli stack of elliptic curves},
author={Antieau, Benjamin and Meier, Lennart},
journal={arXiv preprint arXiv:1608.00851},
year={2016}
}
@article{crump2016properties,
title={Properties of the extended graph permanent},
author={Crump, Iain},
journal={arXiv preprint arXiv:1608.01414},
year={2016}
}
@article{harvey2016computing,
title={Computing {L}-series of geometrically hyperelliptic curves of genus three},
author={Harvey, David and Massierer, Maike and Sutherland, Andrew V},
journal={arXiv preprint arXiv:1605.04708},
year={2016}
}
@article{checcoli2016explicit,
title={On the Explicit Torsion Anomalous Conjecture},
author={Checcoli, Sara and Veneziano, Francesco and Viada, Evelina},
journal={arXiv preprint arXiv:1605.04801},
year={2016}
}
@article{gurel2016occurrence,
title={On the Occurrence of Perfect Squares Among Values of Certain Polynomial Products},
author={G{\"u}rel, Erhan},
journal={The American Mathematical Monthly},
volume={123},
number={6},
pages={597--599},
year={2016},
publisher={JSTOR}
}
@article{mercuri2016equations,
title={Equations and Rational Points of the Modular Curves {X}$^+_0(p)$},
author={Mercuri, Pietro},
journal={arXiv preprint arXiv:1607.04558},
year={2016}
}
@article{swinarski2016equations,
title={Equations of {R}iemann surfaces with automorphisms},
author={Swinarski, David},
journal={arXiv preprint arXiv:1607.04778},
year={2016}
}
@book {MR3100414,
AUTHOR = {Terras, Audrey},
TITLE = {Harmonic analysis on symmetric spaces---{E}uclidean space, the
sphere, and the {P}oincar\'e upper half-plane},
EDITION = {Second},
PUBLISHER = {Springer, New York},
YEAR = {2013},
PAGES = {xviii+413},
ISBN = {978-1-4614-7971-0; 978-1-4614-7972-7},
MRCLASS = {22E30 (11F72 43-02 43A85)},
MRNUMBER = {3100414},
MRREVIEWER = {Rudra P. Sarkar},
DOI = {10.1007/978-1-4614-7972-7},
}
@article{sutherland2012computing,
title={Computing the image of {Galois}},
author={Sutherland, Andrew V},
journal={CNTA XII},
pages={22},
year={2012}
}
@misc{roe2016algebraic,
title={Algebraic tori and a computational inverse {Galois} problem},
author={Roe, David},
url={http://www.pitt.edu/~roed/writings/talks/2016_01_26.pdf},
year={2016}
}
@article{横山俊一2013統合システム,
title={統合システム Sage とクラウド型 CAS の最新事情},
author={横山俊一},
journal={数理解析研究所講究録},
volume={1843},
pages={131--139},
year={2013}
}
@misc{lmfdb2016functions,
title={The {L}-functions and Modular Forms Database (2016)},
author={LMFDB Collaboration and others},
url={http://lmfdb.org},
year={2016}
}
@article{dehaye2016interoperability,
title={Interoperability in the OpenDreamKit Project: The Math-in-the-Middle Approach},
author={Dehaye, Paul-Olivier and Kohlhase, Michael and Konovalov, Alexander and Leli{\`e}vre, Samuel and Pfeiffer, Markus and Thi{\'e}ry, Nicolas M},
journal={arXiv preprint arXiv:1603.06424},
year={2016}
}
@misc{minemodular,
title={Modular forms and applications in number theory},
author={Mine, Alex},
url={http://math.uchicago.edu/~may/REUDOCS/Mine.pdf},
}
@article{linowitzbounds,
title={Bounds for arithmetic hyperbolic reflection groups in dimension 2},
author={Linowitz, Benjamin}
}
@article{linowitz2016spectral,
title={The spectral geometry of arithmetic hyperbolic 3-manifolds},
author={Linowitz, Benjamin},
url={http://www-personal.umich.edu/~linowitz/papers/spectralnotes.pdf},
year={2016}
}
@article{pastor2016regularity,
title={On the regularity of fractional integrals of modular forms},
author={Pastor, Carlos},
journal={arXiv preprint arXiv:1603.06491},
year={2016}
}
@article{patrikis2015deformations,
title={Deformations of {Galois} representations and exceptional monodromy},
author={Patrikis, Stefan},
journal={Inventiones mathematicae},
pages={1--68},
year={2015},
publisher={Springer}
}
@article{johnson2015fourier,
title={Fourier coefficients for twists of {Siegel} paramodular forms (expanded version)},
author={Johnson-Leung, Jennifer and Roberts, Brooks},
journal={arXiv preprint arXiv:1505.05463},
year={2015}
}
@article{cahn2015powers,
title={Powers in orbits of rational functions: cases of an arithmetic dynamical Mordell-Lang conjecture},
author={Cahn, Jordan and Jones, Rafe and Spear, Jacob},
journal={arXiv preprint arXiv:1512.03085},
year={2015}
}
@article{klemm2015direct,
title={Direct Integration for Mirror Curves of Genus Two and an Almost Meromorphic {Siegel} Modular Form},
author={Klemm, Albrecht and Poretschkin, Maximilian and Schimannek, Thorsten and Westerholt-Raum, Martin},
journal={arXiv preprint arXiv:1502.00557},
year={2015}
}
@phdthesis{mertens2014mock,
title={Mock modular forms and class numbers of quadratic forms},
author={Mertens, Michael Helmut},
year={2014},
school={Universit{\"a}t zu K{\"o}ln}
}
@article{nelson2016quantum,
title={Quantum variance on quaternion algebras, {I}},
author={Nelson, Paul D},
journal={arXiv preprint arXiv:1601.02526},
year={2016}
}
@article{grenie2015zeros,
title={Zeros of {Dedekind} zeta functions under {GRH}},
author={Greni{\'e}, Lo{\"\i}c and Molteni, Giuseppe},
journal={Mathematics of Computation},
volume={85},
pages={1503--1522},
year={2015}
}
@article{ryan2016computing,
title={Computing {Jacobi} Forms},
author={Ryan, Nathan C and Sirolli, Nicol{\'a}s and Skoruppa, Nils-Peter and Tornar{\'\i}a, Gonzalo},
journal={arXiv preprint arXiv:1602.07021},
year={2016}
}
@article{fite2015fields,
title={Fields of definition of elliptic $k$-curves and the realizability of all genus 2 {Sato}-{Tate} groups over a number field},
author={Fit{\'e}, Francesc and Guitart, Xavier},
journal={arXiv preprint arXiv:1511.02322},
year={2015}
}
@article{sairaiji2016class,
title={On the class numbers of the fields of the $p^n$-torsion points of elliptic curves over $\mathbb{Q}$},
author={Sairaiji, Fumio and Yamauchi, Takuya},
journal={arXiv preprint arXiv:1603.01296},
year={2016}
}
@article{bartel2016torsion,
title={Torsion homology and regulators of isospectral manifolds},
author={Bartel, Alex and Page, Aurel},
journal={arXiv preprint arXiv:1601.06821},
year={2016}
}
@article{cooper2016beyond,
title={Beyond the excised ensemble: modelling elliptic curve {L}-functions with random matrices},
author={Cooper, Ian A and Morris, Patrick W and Snaith, Nina C},
journal={Journal of Physics A: Mathematical and Theoretical},
volume={49},
number={7},
pages={075202},
year={2016},
publisher={IOP Publishing}
}
@article{bertin2016mahler,
title={On the Mahler measure of hyperelliptic families},
author={Bertin, Marie Jos{\'e} and Zudilin, Wadim},
journal={arXiv preprint arXiv:1601.07583},
year={2016}
}
@article{ramakrishnan2016representations,
title={On the representations of a positive integer by certain classes of quadratic forms in eight variables},
author={Ramakrishnan, B and Sahu, Brundaban and Singh, Anup Kumar},
journal={arXiv preprint arXiv:1607.04764},
year={2016}
}
@article{ramakrishnan2015number,
title={On the number of representations of certain quadratic forms in $20$ and $24$ variables},
author={Ramakrishnan, B and Sahu, Brundaban},
journal={Functiones et Approximatio Commentarii Mathematici},
note={to appear}
}
@article{balakrishnan2016databases,
title={Databases of elliptic curves ordered by height and distributions of Selmer groups and ranks},
author={Balakrishnan, Jennifer S and Ho, Wei and Kaplan, Nathan and Spicer, Simon and Stein, William and Weigandt, James},
journal={arXiv preprint arXiv:1602.01894},
year={2016}
}
@article{booker2016database,
title={A database of genus 2 curves over the rational numbers},
author={Booker, Andrew R and Sijsling, Jeroen and Sutherland, Andrew V and Voight, John and Yasaki, Dan},
journal={arXiv preprint arXiv:1602.03715},
year={2016}
}
@article{jones2016mixed,
title={Mixed degree number field computations},
author={Jones, John W and Roberts, David P},
journal={arXiv preprint arXiv:1602.09119},
year={2016}
}
@article{koutsianas2015computing,
title={Computing all elliptic curves over an arbitrary number field with prescribed primes of bad reduction},
author={Koutsianas, Angelos},
journal={arXiv preprint arXiv:1511.05108},
year={2015}
}
@article{mosunov2015unconditional,
title={Unconditional class group tabulation of imaginary quadratic fields to $|{\Delta}|<2^{40}$},
author={Mosunov, A and Jacobson Jr, M},
journal={Mathematics of Computation},
volume={85},
pages={1983--2009},
year={2016}
}
@article{rouse2013explicit,
title={The explicit {Sato}-{Tate} conjecture and densities pertaining to {Lehmer}-type questions},
author={Rouse, Jeremy and Thorner, Jesse},
journal={Transactions of the AMS},
note={to appear},
year={2016}
}
@article{balakrishnan2015shadow,
title={Shadow lines in the arithmetic of elliptic curves},
author={Balakrishnan, J. S. and {\c{C}}iperiani, M. and Lang, J. and Mirza, B. and Newton, R.},
note={preprint},
url={http://guests.mpim-bonn.mpg.de/rachel/ShadowLines.pdf},
year={2015}
}
@article{kraus2015theoreme,
title={Sur le th{\'e}or{\`e}me de Fermat sur $\mathbb{Q}(\sqrt{5})$},
author={Kraus, Alain},
journal={Annales math{\'e}matiques du Qu{\'e}bec},
volume={39},
number={1},
pages={49--59},
year={2015},
publisher={Springer}
}
@article{hulse2016counting,
title={Counting square discriminants},
author={Hulse, Thomas A and Kuan, Chan Ieong and K{\i}ral, Eren Mehmet and Lim, Li-Mei},
journal={Journal of Number Theory},
volume={162},
pages={255--274},
year={2016},
publisher={Academic Press}
}
@article{schaeffer2015hecke,
title={Hecke stability and weight 1 modular forms},
author={Schaeffer, George J},
journal={Mathematische Zeitschrift},
volume={281},
number={1-2},
pages={159--191},
year={2015},
publisher={Springer Berlin Heidelberg}
}
@article{saouter2015still,
title={A still sharper region where {$\pi(x)-Li(x)$} is positive},
author={Saouter, Yannick and Trudgian, Timothy and Demichel, Patrick},
journal={Mathematics of Computation},
volume={84},
number={295},
pages={2433--2446},
year={2015}
}
@article{jones2013minimal,
title={Minimal solvable nonic fields},
author={Jones, John W},
journal={LMS Journal of Computation and Mathematics},
volume={16},
pages={130--138},
year={2013},
publisher={Cambridge University Press}
}
@mastersthesis{sohexplicit,
title={Explicit Methods for the {Birch} and {Swinnerton}-{Dyer} Conjecture},
type={MSc},
institution={University of Oxford},
author={Soh, Charlene}
}
@article{linowitz2015small,
title={Small isospectral and nonisometric orbifolds of dimension 2 and 3},
author={Linowitz, Benjamin and Voight, John},
journal={Mathematische Zeitschrift},
volume={281},
number={1-2},
pages={523--569},
year={2015},
publisher={Springer Berlin Heidelberg}
}
@article{platt2015computing,
title={Computing $\pi(x)$ analytically},
author={Platt, David},
journal={Mathematics of Computation},
volume={84},
number={293},
pages={1521--1535},
year={2015}
}
@article{guitart2016uniformization,
title={Uniformization of modular elliptic curves via p-adic periods},
author={Guitart, Xavier and Masdeu, Marc and {\c{S}}eng{\"u}n, Mehmet Haluk},
journal={Journal of Algebra},
volume={445},
pages={458--502},
year={2016},
publisher={Academic Press}
}
@article{brunault2015regulators,
title={Regulators for {Rankin}-{Selberg} products of modular forms},
author={Brunault, Fran{\c{c}}ois and Chida, Masataka},
journal={Annales math\'ematiques du Qu\'ebec},
pages={1--29},
year={2016}
}
@article{linowitz2015noncommutative,
title={A Noncommutative Analogue of the {Odlyzko} Bounds and Bounds on Performance for Space-Time Lattice Codes},
author={Linowitz, Benjamin and Satriano, Matthew and Vehkalahti, Roope},
journal={Information Theory, IEEE Transactions on},
volume={61},
number={4},
pages={1971--1984},
year={2015},
publisher={IEEE}
}
@article{kumar2014algebraic,
title={Algebraic models and arithmetic geometry of {Teichm\"uller} curves in genus two},
author={Kumar, Abhinav and Mukamel, Ronen E},
journal={arXiv preprint arXiv:1406.7057},
year={2014}
}
@misc{cohencomputational,
title={Computational number theory in relation with {L}-functions},
author={Cohen, Henri},
url={http://journees-louis-antoine.univ-rennes1.fr/Documents/NotesCohen.pdf}
}
@article{sutherland2015computing,
title={Computing images of {Galois} representations attached to elliptic curves},
author={Sutherland, Andrew V},
journal={Forum of Mathematics, Sigma},
volume={4},
pages={79 pages},
year={2016}
}
@article{balakrishnan2015explicit,
title={Explicit p-adic methods for elliptic and hyperelliptic curves},
author={Balakrishnan, Jennifer S},
journal={Advances on Superelliptic Curves and Their Applications},
volume={41},
pages={260},
year={2015},
publisher={IOS Press}
}
@article{daniels2015torsion,
title={Torsion subgroups of rational elliptic curves over the compositum of all cubic fields},
author={Daniels, Harris B and Lozano-Robledo, Alvaro and Najman, Filip and Sutherland, Andrew V},
journal={arXiv preprint arXiv:1509.00528},
year={2015}
}
@article{ryan2014nonvanishing,
title={Nonvanishing of twists of-functions attached to {Hilbert} modular forms},
author={Ryan, Nathan C and Tornaria, Gonzalo and Voight, John},
journal={LMS Journal of Computation and Mathematics},
volume={17},
number={A},
pages={330--348},
year={2014},
publisher={Cambridge University Press}
}
@article{rahm2013level,
title={On level one cuspidal {Bianchi} modular forms},
author={Rahm, Alexander D and {\c{S}}eng{\"u}n, Mehmet Haluk},
journal={LMS Journal of Computation and Mathematics},
volume={16},
pages={187--199},
year={2013},
publisher={Cambridge University Press}
}
@article{choudhry2015sextuples,
title={Sextuples of integers whose sums in pairs are squares},
author={Choudhry, Ajai},
journal={International Journal of Number Theory},
volume={11},
number={02},
pages={543--555},
year={2015},
publisher={World Scientific}
}
@mastersthesis{waltoncongruent,
title={The Congruent Number Problem and the {Birch} and {Swinnerton}-{Dyer} Conjecture},
type={MMathPhil},
institution={University of Oxford},
author={Walton, Florence}
}
@article{ghitza2013computations,
title={Computations of vector-valued {Siegel} modular forms},
author={Ghitza, Alexandru and Ryan, Nathan C and Sulon, David},
journal={Journal of Number Theory},
volume={133},
number={11},
pages={3921--3940},
year={2013},
publisher={Elsevier}
}
@mastersthesis{baker2015elliptic,
title={Elliptic Curves over Finite Fields and their $l$-Torsion {Galois} Representations},
type={M.S.},
author={Baker, Michael},
year={2015},
institution={University of Waterloo}
}
@article{jones2014tame,
title={The tame-wild principle for discriminant relations for number fields},
author={Jones, John and Roberts, David},
journal={Algebra \& Number Theory},
volume={8},
number={3},
pages={609--645},
year={2014},
publisher={Mathematical Sciences Publishers}
}
@article{farmer2015varieties,
title={Varieties via their {L}-functions},
author={Farmer, David W and Koutsoliotas, Sally and Lemurell, Stefan},
journal={arXiv preprint arXiv:1502.00850},
year={2015}
}
@mastersthesis{harris2015random,
title={Random Matrix Theory and the Attraction of Zeros of {L}-functions from the Central Point},
author={Harris, Katherine Elizabeth},
type={Honors},
institution={Bucknell University},
year={2015}
}
@misc{cass2013tetrakaidecic,
title={Tetrakaidecic Extensions of $\mathbb{Q}_p$},
author={Cass, Robert and Parenti, Salvatore and Shankman, Daniel},
url={http://www.math.clemson.edu/~kevja/REU/2013/TetrakaidecicExtensionsOfQp.pdf},
year={2013}
}
@article{mertens2014eichler,
title={Eichler-{Selberg} type identities for mixed mock modular forms},
author={Mertens, Michael H},
journal={arXiv preprint arXiv:1404.5491},
year={2014}
}
@article{wan2014slopes,
title={Slopes of eigencurves over boundary disks},
author={Wan, Daqing and Xiao, Liang and Zhang, Jun},
journal={arXiv preprint arXiv:1407.0279},
year={2014}
}
@article{deines2016generalized,
title={Generalized {Legendre} curves and quaternionic multiplication},
author={Deines, Alyson and Fuselier, Jenny G and Long, Ling and Swisher, Holly and Tu, Fang-Ting},
journal={Journal of Number Theory},
volume={161},
pages={175--203},
year={2016},
publisher={Academic Press}
}
@phdthesis{banwait2013some,
title={On some local to global phenomena for abelian varieties},
author={Banwait, Barinder S},
year={2013},
school={University of Warwick}
}
@article{rubinstein2013elliptic,
title={Elliptic curves of high rank and the {R}iemann zeta function on the one line},
author={Rubinstein, Michael O},
journal={Experimental Mathematics},
volume={22},
number={4},
pages={465--480},
year={2013},
publisher={Taylor \& Francis}
}
@article{rubinstein2015moments,
title={Moments of zeta functions associated to hyperelliptic curves over finite fields},
author={Rubinstein, Michael O and Wu, Kaiyu},
journal={Philosophical Transactions of the Royal Society of London A: Mathematical, Physical and Engineering Sciences},
volume={373},
number={2040},
pages={20140307},
year={2015},
publisher={The Royal Society}
}
@phdthesis{deines2014shimura,
title={Shimura Degrees for Elliptic Curves over Number Fields},
author={Deines, Alyson Laurene},
institution={University of Washington},
year={2014}
}
@article{dummigan2013simple,
title={A simple trace formula for algebraic modular forms},
author={Dummigan, Neil},
journal={Experimental Mathematics},
volume={22},
number={2},
pages={123--131},
year={2013},
publisher={Taylor \& Francis}
}
@article{sha2014pseudolinearly,
title={Pseudolinearly Dependent Points on Elliptic Curves},
author={Sha, Min and Shparlinski, Igor E},
journal={arXiv preprint arXiv:1410.1596},
year={2014}
}
@article{ugolini2015functional,
title={Functional graphs of rational maps induced by endomorphisms of ordinary elliptic curves over finite fields of odd characteristic},
author={Ugolini, Simone},
journal={arXiv preprint arXiv:1509.05365},
year={2015}
}
@article{katok2014fried,
title={The {Fried} average entropy and slow entropy for actions of higher rank abelian groups},
author={Katok, Anatole and Katok, Svetlana and Hertz, Federico Rodriguez},
journal={Geometric and Functional Analysis},
volume={24},
number={4},
pages={1204--1228},
year={2014},
publisher={Springer}
}
@article{donnelly2015table,
title={A Table of Elliptic Curves over the Cubic Field of Discriminant--23},
author={Donnelly, Steve and Gunnells, Paul E and Klages-Mundt, Ariah and Yasaki, Dan},
journal={Experimental Mathematics},
volume={24},
number={4},
pages={375--390},
year={2015},
publisher={Taylor \& Francis}
}
@article{plouffe2013values,
title={On the values of the functions zeta and gamma},
author={Plouffe, Simon},
journal={arXiv preprint arXiv:1310.7195},
year={2013}
}
@article{ramakrishnan2013evaluation,
title={Evaluation of the convolution sums $\sum_{l+15m= n}\sigma(l)\sigma(m)$ and $\sum_{3l+ 5m= n}\sigma(l)\sigma(m)$ and some applications},
author={Ramakrishnan, B and Sahu, Brundaban},
journal={International Journal of Number Theory},
volume={9},
number={03},
pages={799--809},
year={2013},
publisher={World Scientific}
}
@article{farmer2014maass,
title={Maass Forms on {GL}(3) and {GL}(4)},
author={Farmer, David W and Koutsoliotas, Sally and Lemurell, Stefan},
journal={International mathematics research notices},
volume={2014},
number={22},
pages={6276--6301},
year={2014},
publisher={Oxford University Press}
}
@article{bachilov2014statistics,
title={On Statistics of the {R}iemann Zeros Differences},
author={Bachilov, Yuri},
journal={arXiv preprint arXiv:1402.0865},
year={2014}
}
@incollection{conrey2015riemann,
title={ {R}iemann's hypothesis},
author={Conrey, Brian},
booktitle={Colloquium De Giorgi 2013 and 2014},
pages={109--117},
year={2015},
publisher={Springer}
}
@article{fite2012sato,