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.

A322916 Numbers k such that 303*2^k+1 is prime.

Original entry on oeis.org

1, 2, 5, 8, 9, 10, 13, 17, 21, 30, 38, 93, 125, 140, 170, 178, 181, 394, 453, 588, 1161, 1221, 1573, 1665, 1745, 3613, 3661, 5750, 6002, 6198, 6393, 6764, 7209, 7514, 9444, 13034, 15277, 16070, 20042, 22970, 22977, 25674, 28438, 31040, 35137, 42410, 60285
Offset: 1

Views

Author

Robert Price, Dec 30 2018

Keywords

Crossrefs

Programs

  • Maple
    select(n->isprime(303*2^n+1),[$1..1000]); # Muniru A Asiru, Dec 31 2018
  • Mathematica
    Select[Range[1000], PrimeQ[303*2^# + 1] &] (* Robert Price, Dec 30 2018 *)