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.

A161897 Prime numbers p for which k = (3^p - 3 * 3^((p + 1) / 2) - 6p + 6) / (3p^2 - 3p) is an integer.

Original entry on oeis.org

11, 23, 47, 59, 83, 107, 167, 179, 227, 263, 347, 359, 383, 467, 479, 503, 563, 587, 719, 839, 863, 887, 983, 1019, 1187, 1283, 1307, 1319, 1367, 1439, 1487, 1523, 1619, 1823, 1907, 2027, 2039, 2063, 2099, 2207, 2447, 2459, 2579, 2819, 2879, 2903, 2963, 2999
Offset: 1

Views

Author

Reikku Kulon, Jun 21 2009

Keywords

Comments

Superset of the inverse Sophie Germain primes (A005385): (p - 1) / 2 is almost always prime.

Crossrefs

Programs

  • Maple
    filter:= p -> isprime(p) and
       (3&^p - 3 * 3&^((p + 1) / 2) - 6*p + 6) mod (3*p^2-3*p) = 0:
    select(filter, [seq(i,i=3..10000,2)]); # Robert Israel, Mar 31 2017