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.

A128028 Numbers k such that (13^k - 3^k)/10 is prime.

Original entry on oeis.org

7, 31, 41, 269, 283, 7333, 8803
Offset: 1

Views

Author

Alexander Adamchuk, Feb 11 2007

Keywords

Comments

All terms are primes.
No other terms exist < 100000.

Crossrefs

Cf. A028491 = numbers n such that (3^n - 1)/2 is prime. Cf. A057468 = numbers n such that 3^n - 2^n is prime. Cf. A059801 = numbers n such that 4^n - 3^n is prime. Cf. A121877 = numbers n such that (5^n - 3^n)/2 is a prime. Cf. A128024, A128025, A128026, A128027, A128029, A128030, A128031, A128032.

Programs

  • Mathematica
    k=10; Select[ Prime[ Range[1,200] ], PrimeQ[ ((k+3)^# - 3^#)/k ]& ]
  • PARI
    is(n)=isprime((13^n-3^n)/10) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

One more term from Farideh Firoozbakht, Apr 03 2007
a(7)=8803 from Robert Price, Aug 12 2011