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!)
A096693 Balance index of each prime. 21

%I #5 Mar 30 2012 17:34:11

%S 0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,3,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,

%T 1,1,4,0,0,5,1,0,0,1,0,0,2,0,1,1,0,0,0,0,1,2,0,0,0,1,0,0,0,0,0,0,0,0,

%U 0,2,4,1,0,1,0,1,0,2,0,2,1,1,0,1,2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0

%N Balance index of each prime.

%C a(n) = the number of values of k for which the n-th prime is equal to the arithmetic average of the k primes above and below it.

%C The average of the first n balance indexes appears to reach a global maximum of 0.588 when n = 85, (prime(85) = 439).

%H C. H. Gribble, <a href="/A096693/b096693.txt">Table of n, a(n) for n=1,..., 10000</a>.

%e a(3) = 1 because the third prime, 5, equals (3 + 7)/2.

%e a(16) = 3 because the sixteenth prime, 53, equals (47 + 59)/2 = (41 + 43 + 47 + 59 + 61 + 67)/6 = (31 + 37 + 41 + 43 + 47 + 59 + 61 + 67 + 71 + 73)/10.

%t f[n_] := Block[{c = 0, k = 1, p = Prime[n], s = Plus @@ Table[ Prime[i], {i, n - 1, n + 1}]}, While[k != n - 1, If[s == (2k + 1)p, c++ ]; k++; s = s + Prime[n - k] + Prime[n + k]]; c]; Table[ f[n], {n, 105}]

%o (PARI) b-file generator: {max_n = 10^4; for (n = 1, max_n, c = 0; k = 1; p = prime(n); s = p; while (k < n, s = s + prime(n - k) + prime(n + k); if (s == (2 * k + 1) * p, c++); k++;); print(n " " c);) ;}

%Y Cf. A090403, A096695, A096705, A096706, A096707, A096708, A096709, A096711.

%K nonn

%O 1,16

%A _Robert G. Wilson v_, Jun 26 2004

%E Corrected and edited by _Christopher Hunt Gribble_, Apr 06 2010

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 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)