login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A054728 a(n) is the smallest level N such that genus of modular curve X_0(N) is n (or -1 if no such curve exists). 4

%I #26 Feb 15 2019 09:20:36

%S 1,11,22,30,38,42,58,60,74,66,86,78,106,105,118,102,134,114,223,132,

%T 166,138,188,156,202,168,214,174,236,186,359,204,262,230,278,222,298,

%U 240,314,246,326,210,346,270,358,282,557,306,394,312,412,318

%N a(n) is the smallest level N such that genus of modular curve X_0(N) is n (or -1 if no such curve exists).

%C a(150) = -1, a(n) > 0 for 0<=n<=149.

%C a(9999988) = 119999861 is the largest value in the first 1+10^7 terms of the sequence. - _Gheorghe Coserea_, May 24 2016

%D J. A. Csirik, The genus of X_0(N) is not 150, preprint, 2000.

%H Gheorghe Coserea, <a href="/A054728/b054728.txt">Table of n, a(n) for n = 0..200010</a>

%H János A. Csirik, Joseph L. Wetherell, Michael E. Zieve, <a href="https://arxiv.org/abs/math/0006096">On the genera of X_0(N)</a>, arXiv:math/0006096 [math.NT], 2000.

%F A001617(a(A001617(n))) = A001617(n) and a(A054729(n)) = -1 for all n>=1. - _Gheorghe Coserea_, May 22 2016

%t a1617[n_] := If[n<1, 0, 1+Sum[MoebiusMu[d]^2 n/d/12 - EulerPhi[GCD[d, n/d]]/2, {d, Divisors[n]}] - Count[(#^2 - # + 1)/n& /@ Range[n], _?IntegerQ]/3 - Count[(#^2+1)/n& /@ Range[n], _?IntegerQ]/4];

%t seq[n_] := Module[{inv, bnd}, inv = Table[-1, {n+1}]; bnd = 12n + 18 Floor[Sqrt[n]] + 100; For[k = 1, k <= bnd, k++, g = a1617[k]; If[g <= n && inv[[g+1]] == -1, inv[[g+1]] = k]]; inv];

%t seq[51] (* _Jean-François Alcover_, Nov 20 2018, after _Gheorghe Coserea_ and _Michael Somos_ in A001617 *)

%o (PARI)

%o A000089(n) = {

%o if (n%4 == 0 || n%4 == 3, return(0));

%o if (n%2 == 0, n \= 2);

%o my(f = factor(n), fsz = matsize(f)[1]);

%o prod(k = 1, fsz, if (f[k,1] % 4 == 3, 0, 2));

%o };

%o A000086(n) = {

%o if (n%9 == 0 || n%3 == 2, return(0));

%o if (n%3 == 0, n \= 3);

%o my(f = factor(n), fsz = matsize(f)[1]);

%o prod(k = 1, fsz, if (f[k,1] % 3 == 2, 0, 2));

%o };

%o A001615(n) = {

%o my(f = factor(n), fsz = matsize(f)[1],

%o g = prod(k=1, fsz, (f[k,1]+1)),

%o h = prod(k=1, fsz, f[k,1]));

%o return((n*g)\h);

%o };

%o A001616(n) = {

%o my(f = factor(n), fsz = matsize(f)[1]);

%o prod(k = 1, fsz, f[k,1]^(f[k,2]\2) + f[k,1]^((f[k,2]-1)\2));

%o };

%o A001617(n) = 1 + A001615(n)/12 - A000089(n)/4 - A000086(n)/3 - A001616(n)/2;

%o seq(n) = {

%o my(inv = vector(n+1,g,-1), bnd = 12*n + 18*sqrtint(n) + 100, g);

%o for (k = 1, bnd, g = A001617(k);

%o if (g <= n && inv[g+1] == -1, inv[g+1] = k));

%o return(inv);

%o };

%o seq(51) \\ _Gheorghe Coserea_, May 21 2016

%Y Cf. A001617, A054727, A054729.

%K sign

%O 0,2

%A Janos A. Csirik, Apr 21 2000

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)