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.

A122853 Numbers k such that (3^k + 5^k)/8 = A074606(k)/8 is a prime.

Original entry on oeis.org

3, 5, 7, 17, 19, 109, 509, 661, 709, 1231, 12889, 13043, 26723, 43963, 44789
Offset: 1

Views

Author

Alexander Adamchuk, Sep 14 2006

Keywords

Comments

(3^k + 5^k)/8 = A074606(k)/8 = A081186(k)/4.
Corresponding primes of the form (3^k + 5^k)/2^3 are listed in {A121938(n)} = {A079773(a(n))} = {19, 421, 10039, 95383574161, 2384331073699, ...}.
No other terms less than 100000. - Robert Price, Apr 28 2012

Crossrefs

Programs

  • Mathematica
    Do[f=5^n+3^n;If[PrimeQ[f/2^3],Print[{n,f/2^3}]],{n,1,1231}]
  • PARI
    select(n->isprime((3^n + 5^n)/8), vector(2000,i,i)) \\ Charles R Greathouse IV, Feb 13 2011

Extensions

a(11)-a(15) from Robert Price, Apr 28 2012