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.

A212287 Primes of the form m*p^2 + 1, where p is prime and m <= p^2.

Original entry on oeis.org

5, 13, 17, 19, 37, 73, 101, 151, 197, 251, 401, 491, 601, 677, 727, 883, 1373, 1453, 1471, 1667, 2029, 2179, 2663, 3389, 3469, 3631, 3719, 4057, 4357, 4733, 5477, 6359, 6761, 7019, 8093, 8713, 8837, 9127, 9439, 9803, 9923, 10093, 10141, 10831, 10891, 11617, 11831, 12101, 12343
Offset: 1

Views

Author

Keywords

Comments

Not known to be infinite, but see the Matomäki link.

Examples

			13 is a member since 13 = 3 * 2^2 + 1 with 3 <= 2^2 and 3 is prime.
		

Crossrefs

Programs

  • PARI
    list(lim)=my(v=List(),t);lim=lim\1-.5;forprime(p=2,sqrt(lim), for(a=1,min(lim\p^2,p^2),if(isprime(t=a*p^2+1),listput(v,t))));vecsort(Vec(v),,8)