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.

A124163 Numbers n such that 1 + n + n^3 + n^5 + n^7 + n^9 is prime.

Original entry on oeis.org

2, 12, 14, 18, 48, 62, 80, 86, 116, 120, 138, 212, 230, 264, 272, 362, 368, 386, 392, 422, 440, 450, 456, 468, 480, 492, 510, 518, 528, 534, 548, 558, 620, 632, 678, 710, 744, 770, 780, 834, 884, 900, 918, 960, 1022, 1032, 1074, 1080, 1146, 1170, 1178, 1212, 1232, 1242, 1260, 1308, 1382, 1440, 1470, 1482, 1524
Offset: 1

Views

Author

Artur Jasinski, Dec 13 2006

Keywords

Crossrefs

Cf. A049407, similar sequences listed in A244376.

Programs

  • Magma
    [n: n in [0..1500]| IsPrime(1 + n + n^3 + n^5 + n^7+ n^9 )]; // Vincenzo Librandi, Nov 13 2010
    
  • Magma
    [n: n in [0..1200] | IsPrime(s) where s is 1+&+[n^i: i in [1..9 by 2]]]; // Vincenzo Librandi, Jun 27 2014
    
  • Mathematica
    Do[If[PrimeQ[1 + n + n^3 + n^5 + n^7 + n^9], Print[n]], {n, 1, 300}]
    Select[Range[2000], PrimeQ[Total[#^Range[1, 9, 2]] + 1] &] (* Vincenzo Librandi, Jun 27 2014 *)
  • PARI
    is(n)=isprime(1+n+n^3+n^5+n^7+n^9) \\ Charles R Greathouse IV, Feb 20 2017