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!)
A075892 Average of squares of successive primes: a(n) = (prime(n+1)^2 + prime(n)^2)/2, with n >= 2. 4
17, 37, 85, 145, 229, 325, 445, 685, 901, 1165, 1525, 1765, 2029, 2509, 3145, 3601, 4105, 4765, 5185, 5785, 6565, 7405, 8665, 9805, 10405, 11029, 11665, 12325, 14449, 16645, 17965, 19045, 20761, 22501, 23725, 25609, 27229, 28909, 30985, 32401 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
a(n) is prime for n in A240749. - Robert Israel, Jul 06 2017
If p and q are primes such that p > q > 3, then ((p^2 - q^2)/2, p*q, (p^2 + q^2)/2) is a primitive Pythagorean triple. - César Aguilera, Jun 02 2022
LINKS
FORMULA
a(n)^2 = A124434(n)^2 + A006094(n)^2. - César Aguilera, Jun 02 2022
EXAMPLE
a(2)=17 because (prime(3)^2 + prime(2)^2)/2 = (5^2 + 3^2)/2 = 17.
MAPLE
seq((ithprime(i)^2 + ithprime(i+1)^2)/2, i=2..100); # Robert Israel, Jul 06 2017
MATHEMATICA
Table[(Prime[n + 1]^2 + Prime[n]^2)/2, {n, 2, 50}] (* Vincenzo Librandi, Mar 07 2015 *)
p=2; q=3; Table[p=q; q=NextPrime[q]; (q^2+p^2)/2, {100}] (* Zak Seidov, Jul 06 2017 *)
PROG
(PARI) a(n) = (prime(n+1)^2+prime(n)^2)/2; \\ Michel Marcus, Oct 03 2013
(Magma) [(NthPrime(n+1)^2+NthPrime(n)^2)/2: n in [2..50]]; // Vincenzo Librandi, Mar 07 2015
CROSSREFS
Sequence in context: A319245 A093930 A048880 * A155143 A261529 A141886
KEYWORD
nonn,easy
AUTHOR
Zak Seidov, Oct 17 2002
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 18 20:10 EDT 2024. Contains 371781 sequences. (Running on oeis4.)