Bill Allombert on Sun, 15 Sep 2024 21:44:36 +0200
|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
Re: Regard hecke operators in half integer weight setting
|
- To: "LNU, Swati" <S10@email.sc.edu>
- Subject: Re: Regard hecke operators in half integer weight setting
- From: Bill Allombert <Bill.Allombert@math.u-bordeaux.fr>
- Date: Sun, 15 Sep 2024 21:44:31 +0200
- Cc: pari-users@pari.math.u-bordeaux.fr
- Delivery-date: Sun, 15 Sep 2024 21:44:36 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/simple; d=math.u-bordeaux.fr; s=2022; t=1726429473; bh=ZtTNsdFtQMV37B4MkjSmdz2xNsPvNg+xORPxc4ywy1I=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=UZv0IDp4f8HzIWLBnkW0E7QXGx9x8R/jwvLMoZ19hvjyT2SxSn9WSkUtXxI+FBPtx jjvB28Z6gDmzZwHKrdpDj8MaxiVwpxItwiCakHm81qo9MfTvGufU8V9smqJwyHx2ty LfbiMABQJZxL8pPDJyViLHedJO3kNwqCl5Om1xH8uy41yeFow9lqHzNLy3WAwJwtBB CXYxvSImE0BHxYDUNxkF0IPRWOr89aJloz9y1hzn3HkiawZo78oIbRgAZM4+wSmTYJ LLYkUj47aEvG/GClLidski2UQu9/xICQ+AZ8K5r8Fnze2RgS5XpaPkZNQ+aWO0swHn jIe4NEvwlQKpY+T5ming+wyBK9Jx7DqJ2kPfeDlc+yl8H+RWx0A1Vro7FEIKCIYU2G l/x7wmFDmx4JKYVbc9GFqGRvRBXsxGpU+/Igw51GLokLDqpi96rGwlx6Rlq8mopNJU awnN5FxDv2HxeeuYniim9GGghOeIFKTJKUtNJMuwpDc8Ltj5JFNL2ymzTk91N0/JZ8 xojMOHSa204wsxNP7q4uQ9hGJXtT1ytybSf+91Vxxxu2BMOsku6MFvCnloSL7acbgX IVNQ8Ral6E3S2pyfMGi+lP0iwY4eo6PbYcdvoj/5wp9JwXcumjum9c/tNdurP6yEp9 KlMJH0UA6DVwfowvikAN5hMs=
- In-reply-to: <ZuaQHoqiOlycPJhv@seventeen>
- Mail-followup-to: "LNU, Swati" <S10@email.sc.edu>, pari-users@pari.math.u-bordeaux.fr
- References: <SJ0PR19MB47626250000E1A67640A696680662@SJ0PR19MB4762.namprd19.prod.outlook.com> <ZuXE7inPj8ZY7Nzh@seventeen> <SJ0PR19MB476238F36302B9310CBD65E080672@SJ0PR19MB4762.namprd19.prod.outlook.com> <ZuaQHoqiOlycPJhv@seventeen>
On Sun, Sep 15, 2024 at 09:43:26AM +0200, Bill Allombert wrote:
> On Sun, Sep 15, 2024 at 02:45:16AM +0000, LNU, Swati wrote:
> > Dear Professor,
> > This command itself gives the error.
> >
> > S(f, p, k) = {f = truncate(f); sum(n = 1, poldegree(f), (polcoeff(f, (n * p^2))) + (kronecker(-4, n)^(k - (1/2)) * kronecker(12 * n,p) * p^(k - (3/2)) * polcoeff(f, n)) + (sumdiv(n, p, p^((2 * k)- 2) * polcoeff(f, n/p^2))) * q^n) + O(q^(poldegree(f) + 1));}
>
> Ah OK! But there is no error on my computer:
>
> parisizemax = 4000002048, primelimit = 500000, nbthreads = 8
> ? S(f, p, k) = {f = truncate(f); sum(n = 1, poldegree(f), (polcoeff(f, (n * p^2))) + (kronecker(-4, n)^(k - (1/2)) * kronecker(12 * n,p)
> * p^(k - (3/2)) * polcoeff(f, n)) + (sumdiv(n, p, p^((2 * k)- 2) * polcoeff(f, n/p^2))) * q^n) + O(q^(poldegree(f) + 1));}
^^^^^
n/p^2 has no reason to be an integer, so this is not valid.
Maybe you want to restrict the sum to primes such that p^2 divides n ?
then add if(n%p^2==0,....,0) iun the sum.
Cheers,
Bill.