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.

A244386 Numbers k such that 1 + k + k^3 + k^5 + k^7 + k^9 + ... + k^41 is prime.

Original entry on oeis.org

2, 88, 126, 230, 300, 582, 596, 612, 730, 790, 886, 978, 1000, 1022, 1088, 1160, 1616, 1710, 1958, 2200, 2480, 2512, 2746, 3058, 3120, 3132, 3142, 3348, 3398, 3546, 3568, 3800, 4068, 4190, 4268, 4438, 4446, 4692, 4780, 5012, 5026, 5300, 5498, 5558, 5698, 5880
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..41 by 2]]];
  • Mathematica
    Select[Range[7000], PrimeQ[Total[#^Range[1, 41, 2]] + 1] &]