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.

A268067 Numbers k such that 1 + 2^k + 3^k + 5^k is prime.

Original entry on oeis.org

1, 17, 1295, 63445
Offset: 1

Views

Author

Vaclav Kotesovec, Jan 25 2016

Keywords

Comments

a(4), if it exists, is greater than 50000. - Michael S. Branicky, Mar 31 2023

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 2000], PrimeQ[1 + 2^# + 3^# + 5^#] &]
  • PARI
    lista(nn) = for(n=0, nn, if(ispseudoprime(1 + 2^n + 3^n + 5^n), print1(n, ", "))); \\ Altug Alkan, Jan 25 2016

Extensions

a(4) from Michael S. Branicky, Nov 03 2024