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!)
A232505 Sum of odd quadratic residues of prime(n). 3
1, 1, 1, 1, 18, 13, 38, 50, 26, 83, 66, 137, 224, 242, 147, 303, 509, 395, 578, 364, 714, 563, 965, 1046, 1254, 1155, 1043, 1565, 1323, 1676, 1667, 2440, 2456, 2589, 2563, 2284, 2827, 3362, 2526, 3503, 4408, 3765, 3271, 4902, 4557, 4005, 5829, 5380, 6952, 6093, 7046, 5288, 7626, 8691, 8552, 6871, 8563, 7622, 9007, 10250, 10365, 10233 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Seems to have no modular form.
LINKS
FORMULA
a(n) = A232597(A000040(n)). - Antti Karttunen, Nov 26 2013
EXAMPLE
a(1), a(2), a(3) and a(4) are all 1, as for the corresponding primes 2, 3, 5 and 7 the quadratic residue sets are {1}, {1}, {1,4} and {1,2,4}, in which all cases, only 1 is an odd residue.
For a(5), which is computed for the 5th prime, 11, we have a set of its quadratic residues (those less than 11) as {1,3,4,5,9}, of which when we sum only the odd residues, 1+3+5+9, we get a(5) = 18.
MATHEMATICA
Table[Function[p, Total@ Select[Range[1, p, 2], JacobiSymbol[#, p] == 1 &]]@ Prime@ n, {n, 62}] (* Michael De Vlieger, May 14 2017 *)
PROG
(PARI) A232597(n) = {s=0; for(k=1, n, s=s+((k%2)*((1+kronecker(k, n))\2)*k)); return(s); }
forprime (i=1, 300, print1(A232597(i), ", ")) \\ Antti Karttunen, Nov 26 2013
(Python)
from sympy.ntheory.residue_ntheory import quadratic_residues as q
from sympy import prime
def a(n): return sum(i for i in q(prime(n)) if i%2)
print([a(n) for n in range(1, 101)]) # Indranil Ghosh, May 14 2017
CROSSREFS
Sequence in context: A030239 A040308 A077810 * A297939 A298550 A160901
KEYWORD
nonn
AUTHOR
Jon Perry, Nov 25 2013
EXTENSIONS
Missing 1 (as a(1) is value for the first prime, 2) inserted into beginning by Antti Karttunen, Nov 26 2013
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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)