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!)
A141454 A Legendre symbol type assignment of the modulo ten primes to the polynomial: Expand[(x-1)*(x+1)*(x-2)*(x+2)*(x-0)]=4 x - 5 x^3 + x^5; c(n) = If[Mod[n, 10] == 1, 1, If[Mod[n, 10] == 9, -1, If[Mod[n, 10] == 3, 2, If[Mod[n, 10] == 7, -2, 0]]]] such that n is a prime[n]. 0
0, 2, 0, -2, 1, 2, -2, -1, 2, -1, 1, -2, 1, 2, -2, 2, -1, 1, -2, 1, 2, -1, 2, -1, -2, 1, 2, -2, -1, 2, -2, 1, -2, -1, -1, 1, -2, 2, -2, 2, -1, 1, 1, 2, -2, -1, 1, 2, -2, -1, 2, -1, 1, 1, -2, 2, -1, 1, -2, 1, 2, 2, -2, 1, 2, -2, 1, -2, -2, -1, 2, -1, -2, 2, -1, 2, -1, -2, 1, -1, -1, 1, 1, 2, -1, 2, -1, -2, 1, 2, -2, -1, -2, 1, -1, 2, -1, 1, 2, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Generalized L functions over polynomials modulo to the primes:
Instead of the x^2-1 roots modulo 4 of primes in the Legendre symbol
you identify each modulo value of the primes to a root
and define the function by that.
Modulo 10 of the primes has values {2,5,1,3,7,9};
assigning the roots of the polynomial:
1->1
9->-1
3->2
7->-2
2,5->0
5 root polynomial defined over modulo 10 in primes:
Expand[(x-1)*(x+1)*(x-2)*(x+2)*x]=4 x - 5 x^3 + x^5;
L[s_] = Product[1/(1 - c[Prime[n]]/Prime[n]), {n, 1, Infinity}];
Table[N[L[n]], {n, 1, 5}]
{1., ComplexInfinity, 1., 0., ComplexInfinity}
LINKS
Eric Weisstein's World of Mathematics, Artin L-Function.
FORMULA
c(n) = If[Mod[n, 10] == 1, 1, If[Mod[n, 10] == 9, -1, If[Mod[n, 10] == 3, 2, If[Mod[n, 10] == 7, -2, 0]]]]; such that n is a prime[n].
MATHEMATICA
c[n_] = If[Mod[n, 10] == 1, 1, If[Mod[n, 10] == 9, -1, If[Mod[ n, 10] == 3, 2, If[Mod[n, 10] == 7, -2, 0]]]]; Table[c[Prime[n]], {n, 1, 100}]
CROSSREFS
Sequence in context: A305576 A129679 A319514 * A301564 A334361 A360568
KEYWORD
uned,sign
AUTHOR
STATUS
approved

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 19 16:21 EDT 2024. Contains 371794 sequences. (Running on oeis4.)