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.

A242930 Primes of the form (k^2+7)/11.

Original entry on oeis.org

37, 53, 193, 373, 421, 673, 1061, 2213, 2753, 3637, 4481, 5237, 5413, 7333, 7541, 8513, 8737, 9781, 11393, 12853, 14401, 15733, 17761, 19237, 21121, 25153, 25537, 27701, 29537, 34273, 34721, 39841, 42533, 47653, 50593, 51137
Offset: 1

Views

Author

Chai Wah Wu, Jul 10 2014

Keywords

Comments

Also equal to primes p such that 11*p-7 is a perfect square.

Crossrefs

Programs

  • Python
    import sympy
    [(k**2+7)/11 for k in range(10**6) if sympy.ntheory.isprime((k**2+7)/11) & ((k**2+7)/11).is_integer()]