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!)
A054730 Odd n such that genus of modular curve X_0(N) is never equal to n. 2

%I #18 May 25 2016 11:49:43

%S 49267,74135,94091,96463,102727,107643,118639,138483,145125,181703,

%T 182675,208523,221943,237387,240735,245263,255783,267765,269627,

%U 272583,277943,280647,283887,286815,309663,313447,322435,326355,336675,347823,352719

%N Odd n such that genus of modular curve X_0(N) is never equal to n.

%C There are 4329 odd integers in the sequence less than 10^7. - _Gheorghe Coserea_, May 23 2016

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

%H Gheorghe Coserea, <a href="/A054730/b054730.txt">Table of n, a(n) for n = 1..4329</a>

%H J. A. Csirik, M. Zieve, and J. Wetherell, <a href="http://arXiv.org/abs/math/0006096">On the genera of X0(N)</a>, arXiv:math/0006096 [math.NT], 2000.

%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 scan(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 select(x->(x%2==1), apply(x->(x-1), Vec(select(x->x==-1, inv, 1))));

%o };

%o scan(400*1000)

%Y Cf. A054726, A054727, A054729.

%K nonn

%O 1,1

%A Janos A. Csirik, Apr 21 2000

%E More terms from _Gheorghe Coserea_, May 23 2016

%E Offset corrected by _Gheorghe Coserea_, May 23 2016

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 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)