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.

A244391 Numbers k such that 1 + k + k^3 + k^5 + k^7 + k^9 + ... + k^61 is prime.

Original entry on oeis.org

100, 136, 276, 288, 696, 772, 810, 1036, 1128, 1602, 1678, 1806, 1956, 1962, 2212, 2220, 2500, 2610, 2670, 2718, 2796, 2818, 3066, 3366, 3598, 3936, 4198, 4360, 4452, 4782, 5340, 5998, 6126, 6202, 6210, 6990
Offset: 1

Views

Author

Vincenzo Librandi, Jun 27 2014

Keywords

Crossrefs

Cf. similar sequences listed in A244376.

Programs

  • Magma
    [n: n in [0..7000] | IsPrime(s) where s is 1+&+[n^i: i in [1..61 by 2]]];
  • Mathematica
    Select[Range[10000], PrimeQ[Total[#^Range[1, 61, 2]] + 1]&]