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.

Showing 1-1 of 1 results.

A129697 Sum of isolated primes < 10^n.

Original entry on oeis.org

2, 577, 51896, 4009989, 345281974, 30126035380, 2657646397769, 238004015750349, 21505022353019864, 1960179022139638131, 180020101551309284879, 16639947666244921992434, 1546703841471331792075283, 144470014127904647017055666
Offset: 1

Views

Author

Cino Hilliard, Jun 08 2007

Keywords

Comments

Isolated primes are primes that are not twin prime members.

Examples

			The sum of the isolated primes < 100 = 2+23+37+47+53+67+79+83+89+97 = 577, the second term of this sequence.
		

Crossrefs

Programs

  • PARI
    isoprimes(n) = { local(j,s,x); for(j=1,n, s=0; forprime(x=2,10^j, if(!isprime(x-2)&&!isprime(x+2),s+=x) ); print1(s", ") ) }

Formula

a(n) = A046731(n) - A118552(n) + 5.

Extensions

a(13)-a(14) from Amiram Eldar, Jul 02 2024
Showing 1-1 of 1 results.