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.

A273403 Numbers k such that (10^k - 7^k)/3 is prime.

Original entry on oeis.org

2, 31, 103, 617, 10253, 10691, 35353, 129587, 556441
Offset: 1

Views

Author

Tim Johannes Ohrtmann, May 21 2016

Keywords

Comments

All terms are prime.
The corresponding primes: 17, 3333280741539321718064461652419, ...

Crossrefs

Programs

  • Mathematica
    Select[Range[1, 10000], PrimeQ[(10^# - 7^#)/3] &]
  • PARI
    for(n=1, 10000, if(isprime((10^n - 7^n)/3), print1(n, ", ")))

Extensions

a(7)-a(9) from Jon Grantham, Jul 29 2023