cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A096711 Number of balanced primes (A090403) less than 10^n.

Original entry on oeis.org

1, 8, 57, 308, 1989, 13161, 94939
Offset: 1

Views

Author

Robert G. Wilson v, Jul 03 2004

Keywords

Comments

The average number of balanced primes, p_n, seems to reach a maximum at the 85th prime, 439, of 32 balanced primes.
A096711(n)/A006880(n) begins 25%, 32%, 33.93%, 25.06%, 20.74%

Crossrefs

Cf. A090403.

Programs

  • Mathematica
    f[n_] := 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, Return[1]]; k++; s = s + Prime[n - k] + Prime[n + k]]; 0]; f[1] = 0; Do[ f[n], {n, 10000}]; s = Prime[ Select[ Range[ 10000], f[ # ] == 1 &]]; Table[ Length[ Select[s, # < 10^n &]], {n, 5}]

Extensions

a(6)-a(7) from Donovan Johnson, Apr 09 2010