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.

A180469 Primes of the form 100p + 1, where p is prime.

Original entry on oeis.org

701, 1301, 1901, 3701, 6101, 6701, 7901, 10301, 13901, 15101, 16301, 19301, 21101, 22901, 27701, 42101, 46301, 52301, 54101, 60101, 64301, 70901, 72701, 81101, 82301, 87701, 88301, 93701, 102101, 112901, 115301, 117101, 123701, 132701
Offset: 1

Views

Author

Kevin Batista (kevin762401(AT)yahoo.com), Sep 06 2010

Keywords

Examples

			Example: 7*100 + 1 = 701 is prime, and is therefore a term.
		

Crossrefs

Subsequence of A158128.

Programs

  • PARI
    forprime(p=2,1e4,k=100*p+1;if(isprime(k),print1(k",")))