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!)
A151763 If n is a prime == 1 mod 4 then a(n) = 1, if n is a prime == 3 mod 4 then a(n) = -1, otherwise a(n) = 0. 10

%I #24 Dec 03 2016 12:12:17

%S 0,0,-1,0,1,0,-1,0,0,0,-1,0,1,0,0,0,1,0,-1,0,0,0,-1,0,0,0,0,0,1,0,-1,

%T 0,0,0,0,0,1,0,0,0,1,0,-1,0,0,0,-1,0,0,0,0,0,1,0,0,0,0,0,-1,0,1,0,0,0,

%U 0,0,-1,0,0,0,-1,0,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,-1,0,0

%N If n is a prime == 1 mod 4 then a(n) = 1, if n is a prime == 3 mod 4 then a(n) = -1, otherwise a(n) = 0.

%C a(A002145(n)) = -1; a(A065090(n)) = 0; a(A002144(n)) = 1. [_Reinhard Zumkeller_, Oct 06 2011]

%H Reinhard Zumkeller, <a href="/A151763/b151763.txt">Table of n, a(n) for n = 1..10000</a>

%H N. Katz, <a href="http://dx.doi.org/10.1090/S0273-0979-09-01257-9">Lang-Trotter revisited</a>, Bull. Amer. Math. Soc., 46 (2009), 413-457.

%F a(n) = (2 - n mod 4) * A010051(n).

%p a:= proc(n) if n::odd and isprime(n) then 2 - (n mod 4) else 0 fi end proc:

%p seq(a(n),n=1..100); # _Robert Israel_, Aug 22 2014

%t a[n_] := Which[!PrimeQ[n], 0, m = Mod[n, 4]; m == 1, 1, m == 3, -1, True, 0]; Array[a, 105] (* _Jean-François Alcover_, Dec 03 2016 *)

%o (Haskell)

%o a151763 n | even n = 0

%o | a010051 n == 1 = 2 - n `mod` 4

%o | otherwise = 0

%o -- _Reinhard Zumkeller_, Oct 06 2011

%Y Cf. A079260, A079261.

%Y Cf. A066520 (partial sums).

%K sign

%O 1,1

%A _N. J. A. Sloane_, Jun 22 2009

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 May 11 10:11 EDT 2024. Contains 372409 sequences. (Running on oeis4.)